/* ===== ROOT VARIABLES ===== */
:root {
  --red: #C8102E;
  --red-dark: #A30D25;
  --red-light: #F8D7DC;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-50: #F7F7F8;
  --gray-100: #EFEFEF;
  --gray-200: #D9D9D9;
  --gray-300: #B0B0B0;
  --gray-500: #6B6B6B;
  --gray-700: #3A3A3A;
  --gray-900: #1A1A1A;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'DM Sans', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--red-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--gray-900);
  line-height: 1.25;
}

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section--gray {
  background: var(--gray-50);
}

.text-center {
  text-align: center;
}

.text-red {
  color: var(--red);
}

.badge {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.header__logo span {
  color: var(--red);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav a {
  color: var(--gray-700);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
}

.header__nav a:hover {
  color: var(--red);
}

.header__cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background var(--transition), transform var(--transition);
}

.header__cta:hover {
  background: var(--red-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile menu */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__burger span {
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
  }
  .header__nav.active {
    display: flex;
  }
}

/* ===== HERO ===== */
.hero {
  padding: 60px 0 40px;
  background: linear-gradient(170deg, var(--white) 60%, var(--gray-50) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__content {
  max-width: 520px;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: var(--gray-900);
}

.hero__title span {
  color: var(--red);
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.8;
}

.hero__price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 24px;
  font-family: var(--font-heading);
}

.hero__price small {
  font-size: 0.85rem;
  color: var(--gray-300);
  font-weight: 400;
  margin-left: 4px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(200,16,46,0.3);
}

.hero__btn:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,16,46,0.4);
}

.hero__btn svg {
  width: 18px;
  height: 18px;
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__image img {
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.10));
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__disclaimer {
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero__content {
    max-width: 100%;
    order: 2;
  }
  .hero__image {
    order: 1;
  }
  .hero__image img {
    max-height: 280px;
  }
  .hero__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-100);
}

.features-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.features-strip__item {
  text-align: center;
  padding: 16px;
}

.features-strip__icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--red);
}

.features-strip__item h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.features-strip__item p {
  font-size: 0.78rem;
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .features-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ===== CONTENT SECTIONS ===== */
.content-block {
  padding: 70px 0;
}

.content-block:nth-child(even) {
  background: var(--gray-50);
}

.content-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.content-block__grid--reverse {
  direction: rtl;
}

.content-block__grid--reverse > * {
  direction: ltr;
}

.content-block__text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.content-block__text p {
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-block__text ul {
  list-style: none;
  margin-top: 16px;
}

.content-block__text ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.content-block__text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.content-block__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.content-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

@media (max-width: 768px) {
  .content-block__grid,
  .content-block__grid--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
  }
  .content-block__img {
    order: -1;
  }
}

/* ===== INGREDIENTS ===== */
.ingredients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.ingredient-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ingredient-card__icon {
  width: 48px;
  height: 48px;
  background: var(--red-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.ingredient-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ingredient-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .ingredients__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===== AUDIENCE ===== */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.audience-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.audience-card__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.audience-card h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.audience-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .audience__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== HOW TO USE ===== */
.usage__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.usage-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  position: relative;
}

.usage-step__num {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}

.usage-step h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.usage-step p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .usage__steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===== ORDER FORM ===== */
.order-section {
  padding: 80px 0;
  background: linear-gradient(170deg, var(--gray-50) 0%, var(--white) 100%);
}

.order-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.order-card h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  text-align: center;
}

.order-card > p {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-900);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-group input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.1);
}

.form-group input::placeholder {
  color: var(--gray-300);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(200,16,46,0.3);
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,16,46,0.4);
}

.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--gray-300);
}

@media (max-width: 768px) {
  .order-card {
    padding: 32px 20px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.footer__brand h3 span {
  color: var(--red);
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer__links h4 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__links ul {
  list-style: none;
}

.footer__links ul li {
  margin-bottom: 10px;
}

.footer__links ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer__links ul li a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-modal.visible {
  transform: translateY(0);
}

.cookie-modal__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-modal__text {
  flex: 1;
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.cookie-modal__text a {
  color: var(--red);
  text-decoration: underline;
}

.cookie-modal__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition);
}

.cookie-btn--accept {
  background: var(--red);
  color: var(--white);
}

.cookie-btn--accept:hover {
  background: var(--red-dark);
}

.cookie-btn--decline {
  background: var(--gray-100);
  color: var(--gray-700);
}

.cookie-btn--decline:hover {
  background: var(--gray-200);
}

@media (max-width: 600px) {
  .cookie-modal__inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-modal__actions {
    width: 100%;
    justify-content: center;
  }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 80px 0 60px;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.legal-page .legal-date {
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-bottom: 36px;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-page p {
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-page ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-page ul li {
  color: var(--gray-500);
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.success-card {
  max-width: 520px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.success-icon {
  width: 72px;
  height: 72px;
  background: #E8F5E9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon svg {
  width: 36px;
  height: 36px;
  color: #2E7D32;
}

.success-card h1 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.success-card p {
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.7;
}

.success-card .btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--red);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  transition: background var(--transition);
}

.success-card .btn-back:hover {
  background: var(--red-dark);
  color: var(--white);
}

/* ===== CONTACT PAGE ===== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--red);
}

.contact-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.contact-card a {
  color: var(--red);
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 80px 0 40px;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.about-hero p {
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.about-value {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
}

.about-value__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.about-value h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-value p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about-values {
    grid-template-columns: 1fr;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PRODUCT PAGE ===== */
.product-details {
  padding: 80px 0;
}

.product-details__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-details__image {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-details__image img {
  max-height: 400px;
  object-fit: contain;
}

.product-details__info h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.product-details__info .price-tag {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
  font-family: var(--font-heading);
  margin-bottom: 20px;
}

.product-details__info p {
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.product-table th,
.product-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
}

.product-table th {
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-50);
}

.product-table td {
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .product-details__grid {
    grid-template-columns: 1fr;
  }
}
