/* ===== VitaFreshGrn — Spa Relaxation Theme ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  --gold-light: #FFF8E1;
  --gold: #FFEB3B;
  --gold-mid: #FDD835;
  --gold-dark: #F9A825;
  --gold-deep: #F57F17;
  --text-dark: #2E2A1F;
  --text-body: #4A4637;
  --text-muted: #7A7565;
  --white: #FFFFFF;
  --cream: #FFFDF5;
  --border: rgba(46, 42, 31, 0.1);
  --shadow-sm: 0 2px 8px rgba(46, 42, 31, 0.06);
  --shadow-md: 0 8px 32px rgba(46, 42, 31, 0.08);
  --shadow-lg: 0 16px 48px rgba(46, 42, 31, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1140px;
}

*, *::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(--text-body);
  background: var(--gold-light);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--text-dark); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 500;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 225, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--gold-deep);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--cream);
  padding: 100px 40px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  z-index: 105;
}

.main-nav.open { right: 0; }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 104;
}

.nav-overlay.show { opacity: 1; visibility: visible; }

.main-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.main-nav a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-deep);
  padding-left: 12px;
}

/* Desktop nav */
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-overlay { display: none; }
  .main-nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }
  .main-nav ul {
    flex-direction: row;
    gap: 0;
  }
  .main-nav a {
    padding: 8px 16px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
    border-bottom: none;
    border-radius: 8px;
  }
  .main-nav a:hover,
  .main-nav a.active {
    background: var(--gold);
    padding-left: 16px;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-mid) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0 80px;
}

.hero-text { z-index: 2; text-align: center; }

.hero-text h1 {
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--gold-deep);
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2rem;
}

.hero-image {
  display: flex;
  justify-content: center;
  z-index: 2;
}

.hero-image img {
  max-height: 420px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
  animation: floatProduct 4s ease-in-out infinite;
}

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

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .hero-text { text-align: left; }
  .hero-text p { margin: 0 0 2rem; }
  .hero-image img { max-height: 520px; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-primary {
  background: var(--text-dark);
  color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--gold);
  color: var(--text-dark);
  border: 2px solid var(--gold-mid);
}

.btn-secondary:hover {
  background: var(--gold-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.btn-outline:hover {
  background: var(--text-dark);
  color: var(--gold);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--cream);
}

.section-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-mid) 100%);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ===== TRUST BLOCKS ===== */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }

.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.trust-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.trust-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== DATE BADGE ===== */
.date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

/* ===== PRODUCT PAGE ===== */
.product-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 2rem;
}

.product-gallery .main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-gallery .main-img img {
  max-height: 400px;
  width: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.1));
}

.product-gallery .thumb-row {
  display: flex;
  gap: 8px;
}

.product-gallery .thumb {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gold-light);
  padding: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery .thumb.active,
.product-gallery .thumb:hover {
  border-color: var(--gold-deep);
}

.product-gallery .thumb img {
  max-height: 80px;
  width: auto;
}

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

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

.product-info .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}

.product-info .price small {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
}

/* ===== INGREDIENTS ===== */
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) { .ingredient-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .ingredient-grid { grid-template-columns: repeat(3, 1fr); } }

.ingredient-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.ingredient-card .ing-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.ingredient-card h3 { font-size: 1.1rem; }
.ingredient-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ===== FORMS ===== */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--gold-light);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-mid);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(253, 216, 53, 0.2);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq-list { max-width: 740px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover { color: var(--gold-deep); }

.faq-question .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.faq-item.open .faq-question .icon { transform: rotate(45deg); background: var(--gold); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

.about-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
}

.about-card .card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-mid);
  line-height: 1;
  margin-bottom: 12px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-item .ci-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-item span, .contact-item a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

.footer-col h4 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col ul a:hover { color: var(--gold); }

.footer-col p { font-size: 0.85rem; line-height: 1.6; }

.footer-disclaimer {
  padding: 24px 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
}

@media (min-width: 600px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }

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

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

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

@media (min-width: 600px) {
  .cookie-inner { flex-direction: row; text-align: left; }
}

.cookie-inner p { font-size: 0.88rem; color: var(--text-muted); margin: 0; flex: 1; }
.cookie-inner p a { text-decoration: underline; }

.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btns .btn { padding: 10px 24px; font-size: 0.85rem; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 16px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--gold-deep); }
.breadcrumbs span { margin: 0 6px; opacity: 0.5; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-mid) 100%);
  padding: 60px 0 50px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 40px 0 60px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
}

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

.success-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
}

.success-box .check {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 24px;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

/* ===== USAGE INSTRUCTIONS ===== */
.usage-steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
}

.usage-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}

.usage-step::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* ===== 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);
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-sm { gap: 8px; }
