/* ============================================
   KASHVI BEAUTY — Premium Ayurvedic Ecommerce
   Forest Essentials Inspired Design
   ============================================ */

:root {
  --green: #1B3A2D;
  --green-light: #2D5541;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --ivory: #F5F0E8;
  --ivory-dark: #EDE7D9;
  --cream: #FDFAF5;
  --charcoal: #2C2C2C;
  --text: #3D3530;
  --text-light: #6B5E57;
  --white: #FFFFFF;
  --border: #E0D5C5;
  --shadow: 0 4px 30px rgba(27, 58, 45, 0.08);
  --shadow-hover: 0 8px 40px rgba(27, 58, 45, 0.15);
  --radius: 2px;
  --radius-lg: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--green);
  line-height: 1.2;
}

em { font-style: italic; color: var(--gold); }

a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; }

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
  background: var(--green);
  color: var(--gold);
  padding: 8px 0;
  overflow: hidden;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.announcement-inner {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.announcement-inner span { flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-left, .nav-right {
  display: flex;
  gap: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-left a, .nav-right a { color: var(--charcoal); }
.nav-left a:hover, .nav-right a:hover { color: var(--gold); }

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-mark {
  color: var(--gold);
  font-size: 1.5rem;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.05em;
}
.logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.header-icons { display: flex; align-items: center; gap: 1rem; }
.icon-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--charcoal);
  font-size: 0.75rem;
  cursor: pointer;
  position: relative;
}
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn:hover { color: var(--gold); }
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--charcoal); transition: var(--transition); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--cream);
  z-index: 2000;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}
.mobile-menu.open { left: 0; }
.mobile-menu a {
  display: block;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  font-family: 'Cormorant Garamond', serif;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-divider { margin: 1rem 0; }
.mobile-menu .logout { color: var(--gold); }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.5rem;
  background: var(--green);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary:hover { background: var(--green-light); color: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.btn-primary.full { width: 100%; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.5rem;
  background: transparent;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--green);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline:hover { background: var(--green); color: var(--gold); }
.btn-outline.full { width: 100%; margin-top: 0.8rem; }

/* ============ HERO ============ */
.hero {
  min-height: 90vh;
  background: var(--ivory);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem 4rem 6rem;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--green);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 450px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-circle {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ivory-dark) 0%, var(--ivory) 70%);
  border: 1px solid var(--border);
  position: relative;
}
.botanical-ele {
  position: absolute;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
}
.b1 { top: 5%; left: 10%; animation-delay: 0s; }
.b2 { bottom: 10%; left: 5%; animation-delay: 1.5s; }
.b3 { top: 15%; right: 5%; animation-delay: 3s; }
.b4 { bottom: 20%; right: 10%; animation-delay: 4.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.hero-product-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
}
.hpc-img { font-size: 2.5rem; }
.hpc-text { display: flex; flex-direction: column; }
.hpc-text span { font-size: 0.65rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }
.hpc-text strong { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--green); }
.hpc-text em { font-size: 0.85rem; color: var(--text-light); font-style: normal; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}
.scroll-line { width: 1px; height: 40px; background: var(--gold); animation: scrollDown 2s ease-in-out infinite; }
@keyframes scrollDown { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--green);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 0.8rem; color: var(--ivory); }
.trust-icon { font-size: 1.5rem; }
.trust-item strong { display: block; font-size: 0.85rem; color: var(--gold); font-weight: 500; }
.trust-item span { font-size: 0.72rem; opacity: 0.8; }
.trust-divider { color: var(--gold); opacity: 0.4; }

/* ============ SECTIONS ============ */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.section-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.section-header p { color: var(--text-light); }
.section-cta { text-align: center; margin-top: 3rem; }

/* ============ PRODUCTS ============ */
.section-products {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.products-grid.large { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  background: var(--green);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}
.product-img-wrap {
  display: block;
  background: var(--ivory);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--ivory-dark) 100%);
}
.product-emoji { font-size: 5rem; }
.product-info { padding: 1.2rem; }
.product-category { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.product-info h3 { font-size: 1.1rem; margin: 0.3rem 0 0.4rem; color: var(--green); }
.product-info h3:hover { color: var(--gold); }
.product-info p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 0.8rem; line-height: 1.5; }
.product-rating { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--text-light); margin-bottom: 0.8rem; }
.stars { color: var(--gold); font-size: 0.85rem; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.price-group { display: flex; align-items: baseline; gap: 0.5rem; }
.price { font-size: 1.1rem; font-weight: 600; color: var(--green); font-family: 'Cormorant Garamond', serif; }
.original-price { font-size: 0.85rem; color: var(--text-light); text-decoration: line-through; }
.add-to-bag {
  padding: 0.5rem 1rem;
  background: var(--green);
  color: var(--gold);
  border: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Jost', sans-serif;
  white-space: nowrap;
}
.add-to-bag:hover { background: var(--gold); color: var(--green); }

/* ============ STORY SECTION ============ */
.story-section {
  padding: 6rem 2rem;
  background: var(--ivory);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.story-content .section-badge { display: block; margin-bottom: 0.5rem; }
.story-content h2 { font-size: 3rem; margin: 0.5rem 0 1rem; }
.story-divider { font-size: 2rem; color: var(--gold); margin-bottom: 1.5rem; }
.story-content p { color: var(--text-light); margin-bottom: 1rem; }
.story-points { list-style: none; margin: 1.5rem 0 2rem; }
.story-points li { padding: 0.4rem 0; color: var(--text); font-size: 0.9rem; }
.story-badge { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; }

.story-visual { position: relative; }
.story-circle-1, .story-circle-2 {
  border-radius: 50%;
  position: absolute;
}
.story-circle-1 { width: 300px; height: 300px; background: var(--ivory-dark); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.story-circle-2 { width: 200px; height: 200px; background: var(--border); top: 50%; left: 50%; transform: translate(-30%, -70%); }
.story-ingredients {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 2rem;
}
.ing-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--green);
  text-align: center;
  transition: var(--transition);
}
.ing-item:hover { background: var(--green); color: var(--gold); }

/* ============ INGREDIENTS ============ */
.ingredients-section { padding: 5rem 2rem; background: var(--cream); }
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.ing-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.ing-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.ing-card.featured { background: var(--ivory); border-color: var(--gold); }
.ing-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.ing-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.ing-card p { font-size: 0.85rem; color: var(--text-light); }
.ing-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  padding: 0.2rem 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section { padding: 5rem 2rem; background: var(--green); text-align: center; }
.testimonials-section .section-badge { color: var(--gold); }
.testimonials-section h2 { color: var(--ivory); }
.testimonials-slider {
  display: flex;
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 1rem 0;
}
.testimonials-slider::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 340px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 2.5rem;
  scroll-snap-align: start;
  text-align: left;
}
.testimonial-card .stars { font-size: 1rem; margin-bottom: 1rem; display: block; }
.testimonial-card p { color: var(--ivory); font-size: 0.9rem; line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-author strong { color: var(--ivory); font-size: 0.9rem; display: block; }
.testimonial-author span { color: var(--gold); font-size: 0.75rem; }
.slider-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--gold); }

/* ============ NEWSLETTER ============ */
.newsletter-section {
  padding: 5rem 2rem;
  background: var(--ivory);
  text-align: center;
}
.newsletter-inner { max-width: 550px; margin: 0 auto; }
.newsletter-inner h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.newsletter-inner p { color: var(--text-light); margin-bottom: 2rem; }
.newsletter-form {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}
.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.5rem;
  border: none;
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
}
.newsletter-form button {
  padding: 0.9rem 2rem;
  background: var(--green);
  color: var(--gold);
  border: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold); color: var(--green); }
.newsletter-section small { color: var(--text-light); font-size: 0.75rem; }

/* ============ FOOTER ============ */
.footer { background: var(--green); color: var(--ivory); }
.footer-top {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-logo .logo-mark { color: var(--gold); font-size: 1.3rem; }
.footer-logo span { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--ivory); }
.footer-brand p { color: rgba(245,240,232,0.7); font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: var(--gold); opacity: 0.7; transition: var(--transition); }
.footer-social a:hover { opacity: 1; }
.footer-social svg { width: 20px; height: 20px; }

.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-col a {
  display: block;
  color: rgba(245,240,232,0.7);
  font-size: 0.82rem;
  padding: 0.25rem 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-newsletter {
  display: flex;
  border: 1px solid rgba(201,168,76,0.3);
}
.footer-newsletter input {
  flex: 1;
  padding: 0.6rem 0.8rem;
  background: transparent;
  border: none;
  color: var(--ivory);
  font-size: 0.8rem;
  outline: none;
}
.footer-newsletter input::placeholder { color: rgba(245,240,232,0.4); }
.footer-newsletter button {
  padding: 0.6rem 1rem;
  background: var(--gold);
  color: var(--green);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-newsletter button:hover { background: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 1.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: rgba(245,240,232,0.5); font-size: 0.78rem; }
.footer-payment { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-payment span {
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(201,168,76,0.3);
  font-size: 0.68rem;
  color: rgba(245,240,232,0.6);
  letter-spacing: 0.05em;
}

/* ============ PAGE HERO ============ */
.page-hero {
  background: var(--ivory);
  text-align: center;
  padding: 6rem 2rem;
}
.page-hero.small { padding: 4rem 2rem; }
.page-hero h1 { font-size: 3rem; margin: 0.5rem 0 1rem; }
.page-hero p { color: var(--text-light); max-width: 500px; margin: 0 auto; }

/* ============ SHOP ============ */
.shop-section { padding: 2rem; max-width: 1400px; margin: 0 auto; }
.shop-filters { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.filter-categories { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.filter-btn:hover, .filter-btn.active { background: var(--green); color: var(--gold); border-color: var(--green); }
.sort-select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  cursor: pointer;
  outline: none;
}
.search-bar-wrap { margin-bottom: 2rem; }
.search-form { display: flex; max-width: 400px; border: 1px solid var(--border); }
.search-input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: none;
  background: var(--white);
  font-family: 'Jost', sans-serif;
  outline: none;
  font-size: 0.9rem;
}
.search-btn { padding: 0.7rem 1rem; background: var(--green); color: var(--gold); border: none; cursor: pointer; }
.search-btn svg { width: 16px; height: 16px; }
.no-products { text-align: center; padding: 4rem; color: var(--text-light); }

/* ============ PRODUCT DETAIL ============ */
.product-detail-section { max-width: 1400px; margin: 0 auto; padding: 2rem; }
.breadcrumb { font-size: 0.78rem; color: var(--text-light); margin-bottom: 2rem; }
.breadcrumb a:hover { color: var(--gold); }
.product-detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 5rem; }
.product-gallery { display: flex; flex-direction: column; gap: 1rem; }
.main-image {
  background: var(--ivory);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--border);
}
.product-img-large { display: flex; align-items: center; justify-content: center; }
.product-badge.large { font-size: 0.75rem; padding: 0.4rem 1rem; }
.thumb-images { display: flex; gap: 0.5rem; }
.thumb {
  width: 80px;
  height: 80px;
  background: var(--ivory);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}
.thumb.active, .thumb:hover { border-color: var(--gold); }

.product-detail-info { padding: 1rem 0; }
.product-detail-info h1 { font-size: 2.2rem; margin: 0.5rem 0 1rem; }
.product-rating.large { font-size: 0.9rem; margin-bottom: 1rem; }
.product-price-detail { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1rem; }
.price.large { font-size: 2rem; }
.discount-badge {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  padding: 0.2rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.product-short-desc { color: var(--text-light); margin-bottom: 1.5rem; }
.product-highlights { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.highlight {
  padding: 0.4rem 0.8rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text);
}
.add-to-cart-section { display: flex; gap: 1rem; margin-bottom: 1rem; }
.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
}
.qty-selector button {
  width: 40px;
  height: 48px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text);
  transition: var(--transition);
}
.qty-selector button:hover { background: var(--ivory); }
.qty-selector input {
  width: 50px;
  height: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
}
.product-tabs { margin-top: 2rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.tab-headers { display: flex; gap: 0; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.tab-btn {
  padding: 0.7rem 1.5rem;
  background: none;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover { color: var(--green); border-bottom-color: var(--gold); }
.tab-content { display: none; color: var(--text-light); font-size: 0.9rem; line-height: 1.8; }
.tab-content.active { display: block; }
.tab-content ul { list-style: none; }
.tab-content li { padding: 0.3rem 0; }
.related-section { padding: 3rem 0; border-top: 1px solid var(--border); }

/* ============ CART ============ */
.cart-section { max-width: 1400px; margin: 0 auto; padding: 2rem; }
.empty-cart { text-align: center; padding: 5rem 2rem; }
.empty-icon { font-size: 5rem; margin-bottom: 1rem; }
.empty-cart h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.empty-cart p { color: var(--text-light); margin-bottom: 2rem; }

.cart-inner { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img { width: 80px; height: 80px; background: var(--ivory); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.cart-item-price { color: var(--gold); font-weight: 500; }
.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
}
.cart-item-qty button { width: 32px; height: 32px; background: none; border: none; cursor: pointer; font-size: 1rem; }
.cart-item-qty span { padding: 0 0.8rem; font-size: 0.9rem; }
.cart-item-total { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--green); min-width: 80px; text-align: right; }
.remove-btn { background: none; border: none; color: var(--text-light); cursor: pointer; font-size: 0.9rem; padding: 0.3rem; transition: var(--transition); }
.remove-btn:hover { color: #c0392b; }

.cart-summary {
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.cart-summary h3 { font-size: 1.3rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 0.8rem; font-size: 0.9rem; }
.summary-row.total { font-size: 1.1rem; font-weight: 600; color: var(--green); font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; }
.summary-divider { height: 1px; background: var(--border); margin: 1rem 0; }
.free-shipping-bar { background: var(--white); border: 1px solid var(--border); padding: 1rem; margin-bottom: 1rem; }
.free-shipping-bar p { font-size: 0.78rem; color: var(--text); margin-bottom: 0.5rem; }
.progress-bar { height: 4px; background: var(--border); }
.progress-fill { height: 100%; background: var(--green); transition: width 0.5s; }
.cart-trust { display: flex; justify-content: space-between; margin-top: 1rem; font-size: 0.72rem; color: var(--text-light); }

/* ============ CHECKOUT ============ */
.checkout-section { max-width: 1300px; margin: 0 auto; padding: 2rem; }
.checkout-inner { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.checkout-form-wrap h3 { font-size: 1.3rem; margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--border); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.05em; color: var(--text); text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }

.payment-options { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.payment-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.payment-option input[type="radio"] { display: none; }
.payment-option.selected { border-color: var(--green); background: var(--ivory); }
.payment-icon { font-size: 1.5rem; }
.payment-option div { flex: 1; }
.payment-option strong { display: block; font-size: 0.9rem; color: var(--text); }
.payment-option span { font-size: 0.78rem; color: var(--text-light); }
.checkmark { color: var(--green); opacity: 0; transition: var(--transition); }
.payment-option.selected .checkmark { opacity: 1; }

.checkout-note { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 1rem; }
.form-check { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 1rem; font-size: 0.82rem; }
.form-check input { margin-top: 2px; }

.checkout-summary {
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.checkout-summary h3 { font-size: 1.1rem; margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--border); }
.checkout-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.checkout-item-img { width: 50px; height: 50px; background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; border: 1px solid var(--border); }
.checkout-item-info { flex: 1; }
.checkout-item-info strong { display: block; font-size: 0.85rem; color: var(--text); }
.checkout-item-info span { font-size: 0.75rem; color: var(--text-light); }
.checkout-item-price { font-weight: 500; font-size: 0.9rem; }
.checkout-benefits { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.checkout-benefits div { font-size: 0.78rem; color: var(--text-light); padding: 0.3rem 0; }

/* ============ AUTH ============ */
.auth-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}
.auth-card {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
.auth-logo { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 2rem; text-transform: uppercase; }
.auth-card h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.auth-card > p { color: var(--text-light); margin-bottom: 2rem; }
.auth-error { background: rgba(192, 57, 43, 0.1); color: #c0392b; padding: 0.8rem 1rem; font-size: 0.85rem; margin-bottom: 1rem; border: 1px solid rgba(192,57,43,0.2); }
.auth-form { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.auth-divider { position: relative; text-align: center; margin: 1rem 0; }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border); }
.auth-divider span { position: relative; background: var(--cream); padding: 0 1rem; font-size: 0.78rem; color: var(--text-light); }
.auth-switch { text-align: center; font-size: 0.85rem; color: var(--text-light); }
.auth-switch a { color: var(--green); font-weight: 500; }

.auth-visual {
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 4rem;
}
.auth-circle {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.auth-text { position: relative; z-index: 1; max-width: 380px; }
.auth-text h3 { font-size: 2.5rem; color: var(--ivory); margin-bottom: 1rem; font-weight: 300; }
.auth-text p { color: rgba(245,240,232,0.7); margin-bottom: 2rem; }
.auth-text ul { list-style: none; }
.auth-text li { color: var(--gold); padding: 0.5rem 0; font-size: 0.9rem; }

/* ============ ACCOUNT ============ */
.account-section { max-width: 1300px; margin: 0 auto; padding: 2rem; }
.account-grid { display: grid; grid-template-columns: 250px 1fr; gap: 2rem; }
.account-nav { background: var(--ivory); border: 1px solid var(--border); padding: 1rem; height: fit-content; }
.acc-nav-item { display: block; padding: 0.8rem 1rem; font-size: 0.85rem; border-bottom: 1px solid var(--border); color: var(--text); }
.acc-nav-item:last-child { border-bottom: none; }
.acc-nav-item:hover, .acc-nav-item.active { color: var(--green); background: var(--cream); }
.acc-nav-item.logout { color: #c0392b; }
.account-card { background: var(--white); border: 1px solid var(--border); padding: 2rem; }
.account-card h3 { font-size: 1.3rem; margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--border); }
.empty-orders { text-align: center; padding: 3rem; }

/* ============ ORDER SUCCESS ============ */
.order-success-section { max-width: 600px; margin: 4rem auto; padding: 2rem; text-align: center; }
.success-card { background: var(--white); border: 1px solid var(--border); padding: 3rem; }
.success-icon { font-size: 3rem; color: var(--gold); margin-bottom: 1.5rem; }
.success-card h1 { font-size: 2rem; color: var(--green); margin-bottom: 0.5rem; }
.success-card > p { color: var(--text-light); margin-bottom: 2rem; }
.order-id-box { background: var(--ivory); border: 1px solid var(--gold); padding: 1rem; margin-bottom: 2rem; }
.order-id-box span { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 0.3rem; }
.order-id-box strong { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--green); }
.order-details { text-align: left; margin-bottom: 2rem; }
.order-detail-row { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.success-message { background: var(--ivory); padding: 1rem; margin-bottom: 2rem; font-size: 0.85rem; }
.success-message p { margin-bottom: 0.3rem; }
.success-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============ ABOUT / FOUNDERS ============ */
.about-section { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.about-content h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.about-content p { color: var(--text-light); margin-bottom: 1rem; }
.about-visual { display: flex; align-items: center; justify-content: center; position: relative; height: 300px; }
.about-circle { width: 250px; height: 250px; border-radius: 50%; background: var(--ivory); border: 1px solid var(--border); }
.about-emoji { position: absolute; font-size: 8rem; }

.founders-section { text-align: center; }
.founders-section h2 { font-size: 2.5rem; margin-bottom: 2rem; }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 800px; margin: 0 auto; }
.founder-card { background: var(--white); border: 1px solid var(--border); padding: 2.5rem; text-align: center; }
.founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Cormorant Garamond', serif;
}
.founder-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.founder-role { display: block; font-size: 0.78rem; color: var(--gold); letter-spacing: 0.05em; margin-bottom: 1rem; }
.founder-card p { font-size: 0.85rem; color: var(--text-light); }

/* ============ CONTACT ============ */
.contact-section { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-size: 1.8rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item span { font-size: 1.5rem; }
.contact-item strong { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.2rem; }
.contact-item a, .contact-item span:last-child { font-size: 0.85rem; color: var(--text-light); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; background: var(--white); border: 1px solid var(--border); padding: 2rem; }

/* ============ INGREDIENTS FULL ============ */
.ingredients-full-section { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
.ing-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.ing-full-card { background: var(--white); border: 1px solid var(--border); padding: 2.5rem; transition: var(--transition); position: relative; }
.ing-full-card:hover { box-shadow: var(--shadow-hover); }
.ing-full-card.gold { background: var(--ivory); border-color: var(--gold); }
.ing-full-icon { font-size: 3rem; margin-bottom: 1rem; }
.ing-full-card h3 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.ing-full-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ============ RITUALS ============ */
.rituals-section { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }
.rituals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 2rem; }
.ritual-card { background: var(--white); border: 1px solid var(--border); padding: 2.5rem; transition: var(--transition); }
.ritual-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.ritual-card.featured { background: var(--green); color: var(--ivory); border-color: var(--green); }
.ritual-card.featured h3 { color: var(--gold); }
.ritual-card.featured p { color: rgba(245,240,232,0.8); }
.ritual-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--gold); opacity: 0.4; margin-bottom: 0.5rem; }
.ritual-card h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.ritual-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
.ritual-time { font-size: 0.75rem; color: var(--gold); }

/* ============ TOAST NOTIFICATION ============ */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--green);
  color: var(--ivory);
  padding: 1rem 2rem;
  border-left: 3px solid var(--gold);
  z-index: 9999;
  animation: slideIn 0.3s ease;
  font-size: 0.9rem;
  max-width: 350px;
}
.toast.error { border-left-color: #c0392b; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 4rem 2rem; text-align: center; }
  .hero-visual { display: none; }
  .hero-cta { justify-content: center; }
  .story-section { grid-template-columns: 1fr; gap: 2rem; }
  .story-visual { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .cart-inner, .checkout-inner { grid-template-columns: 1fr; }
  .auth-section { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .product-detail-inner { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .founders-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .account-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-left, .nav-right { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { padding: 0 1.2rem; }
  .trust-strip { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .section-header h2 { font-size: 2rem; }
  .hero-title { font-size: 2.5rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cart-item { flex-wrap: wrap; }
  .form-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 3rem 2rem; }
  .page-hero h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .shop-filters { flex-direction: column; align-items: flex-start; }
}
