/* ===================================================================
   TVISHA SOUNDARYA — Main Stylesheet
   Theme: Deep forest green + saffron gold on warm cream
   =================================================================== */

/* ── Reset & Variables ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #2A5C1B;
  --green-dark:   #1A3A10;
  --green-light:  #4A8A2E;
  --green-pale:   #EEF5E8;
  --gold:         #C8963E;
  --gold-light:   #E8B96A;
  --gold-pale:    #FBF3E2;
  --cream:        #FAFAF5;
  --cream-alt:    #F2EFE6;
  --text:         #1A1A1A;
  --text-muted:   #666666;
  --text-light:   #999999;
  --white:        #FFFFFF;
  --border:       #E0DDD5;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.07);
  --shadow-md:    0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.14);
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --transition:   .25s ease;
  --font:         'Libre Franklin', 'Segoe UI', sans-serif;
  --font-serif:   'Libre Baskerville', Georgia, serif;
}

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

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section-gap { padding: 72px 0; }
.section-gap-sm { padding: 48px 0; }

/* ── Typography Helpers ────────────────────────────────────────── */
.section-label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}
.section-title span { color: var(--green); }
.section-subtitle {
  font-size: .95rem;
  color: var(--text-muted);
  margin-top: 10px;
  max-width: 520px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(42,92,27,.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(42,92,27,.45);
}
.btn-outline {
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
}
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(200,150,62,.35);
}
.btn-gold:hover {
  background: #b5842e;
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 20px; font-size: .82rem; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Top Announcement Bar ──────────────────────────────────────── */
.announcement-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,.9);
  text-align: center;
  padding: 9px 20px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.announcement-bar a { color: var(--gold-light); text-decoration: underline; margin-left: 6px; }

/* ── Header ────────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 6px 0;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 84px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* fallback text (kept for footer where bg is dark) */
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.logo-text { line-height: 1.1; margin-left: 10px; }
.logo-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--green-dark);
}
.logo-text small {
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
}

.main-nav { flex: 1; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green);
  background: var(--green-pale);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  background: transparent;
}
.icon-btn:hover { background: var(--green-pale); color: var(--green); }
.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--gold);
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  display: none;
}
.cart-count.show { display: flex; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 280px;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  padding: 24px 20px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateX(-100%);
  transition: transform .3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
}
.mobile-nav-links { margin-top: 48px; }
.mobile-nav-links a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 1999;
}
.nav-overlay.show { display: block; }

/* ── Category Nav Strip ────────────────────────────────────────── */
.cat-strip {
  background: var(--green);
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-strip::-webkit-scrollbar { display: none; }
.cat-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 20px;
  max-width: 1240px;
  margin: 0 auto;
}
.cat-strip a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 18px;
  color: rgba(255,255,255,.8);
  font-size: .84rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
  border-right: 1px solid rgba(255,255,255,.15);
}
.cat-strip a:last-child { border-right: none; }
.cat-strip a:hover { color: var(--white); background: rgba(255,255,255,.12); }
.cat-strip a svg { flex-shrink: 0; }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #F5F0E8 0%, #EEF5E8 60%, #E8F2E0 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(42,92,27,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 520px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.hero-title span { color: var(--green); }
.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
}
.hero-stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
}
.hero-stat span { font-size: .8rem; color: var(--text-muted); font-weight: 600; }

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-ring {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(42,92,27,.12), rgba(200,150,62,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-image-ring img {
  width: 380px;
  height: 380px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.18));
  transition: transform .4s ease;
}
.hero-image-ring:hover img { transform: scale(1.04); }
.hero-floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  font-size: .78rem;
  font-weight: 700;
}
.hero-floating-badge.badge-delivery {
  bottom: 40px; left: -10px;
  color: var(--green);
  display: flex; align-items: center; gap: 8px;
}
.hero-floating-badge.badge-secure {
  top: 60px; right: -10px;
  color: var(--gold);
  display: flex; align-items: center; gap: 8px;
}
.hero-floating-badge svg { flex-shrink: 0; }

/* ── Categories Grid ───────────────────────────────────────────── */
.categories-section { background: var(--white); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.category-card {
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.category-card:hover { transform: translateY(-4px); }
.category-img-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 3px solid var(--border);
  transition: border-color var(--transition);
  background: var(--cream-alt);
}
.category-card:hover .category-img-wrap { border-color: var(--green); }
.category-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.category-card:hover .category-img-wrap img { transform: scale(1.1); }
.category-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
}
.category-card p {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ── Product Cards ─────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-img-wrap {
  position: relative;
  background: var(--cream-alt);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform .4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.badge-bestseller { background: var(--green); color: var(--white); }
.badge-new        { background: #E74C3C; color: var(--white); }
.badge-popular    { background: #8B5CF6; color: var(--white); }
.badge-special    { background: var(--gold); color: var(--white); }
.badge-arrival    { background: #0EA5E9; color: var(--white); }

.product-discount {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 50px;
  border: 1px solid var(--gold-light);
}
.product-wishlist {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 32px; height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--text-light);
  transition: var(--transition);
  opacity: 0;
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist:hover { color: #E74C3C; }
.product-wishlist.active { color: #E74C3C; opacity: 1; }

.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-sub {
  font-size: .72rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 5px;
}
.product-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 8px;
}
.product-name a:hover { color: var(--green); }
.product-size {
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.product-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 12px;
}
.price-current {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green-dark);
}
.price-mrp {
  font-size: .82rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.product-actions { display: flex; gap: 8px; }
.add-to-cart {
  flex: 1;
  background: var(--green);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 700;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.add-to-cart:hover { background: var(--green-dark); transform: none; }
.add-to-cart.added { background: var(--green-light); }
.view-btn {
  width: 38px;
  height: 38px;
  border: 2px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.view-btn:hover { border-color: var(--green); color: var(--green); }

/* ── Section Header with "View All" ───────────────────────────── */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.view-all {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 700;
  font-size: .88rem;
  transition: var(--transition);
}
.view-all:hover { gap: 10px; }

/* ── Offer Banners ─────────────────────────────────────────────── */
.offers-section { background: var(--cream-alt); }
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.offer-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  padding: 32px;
  cursor: pointer;
  transition: var(--transition);
}
.offer-card:hover { transform: scale(1.015); }
.offer-card-hair {
  background: linear-gradient(135deg, #1A3A10 0%, #2A5C1B 60%);
  color: var(--white);
}
.offer-card-skin {
  background: linear-gradient(135deg, #2A3A10 0%, #5C6A1B 60%);
  color: var(--white);
}
.offer-img {
  position: absolute;
  right: 0; bottom: 0;
  width: 50%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  opacity: .9;
}
.offer-content { position: relative; z-index: 1; max-width: 55%; }
.offer-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.offer-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}
.offer-desc {
  font-size: .82rem;
  opacity: .8;
  margin-bottom: 20px;
}
.offer-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--green-dark);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  transition: var(--transition);
}
.offer-btn:hover { background: var(--gold); color: var(--white); gap: 10px; }

/* ── About Section ─────────────────────────────────────────────── */
.about-section { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 160px;
  gap: 12px;
}
.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-gallery img:first-child { grid-row: span 2; border-radius: var(--radius-lg); }
.about-gallery--single {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-gallery--single img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.about-content .section-label { margin-bottom: 8px; }
.about-content .section-title { margin-bottom: 16px; }
.about-text { color: var(--text-muted); font-size: .95rem; line-height: 1.8; margin-bottom: 24px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--green-pale);
  border-radius: var(--radius);
}
.about-stat { text-align: center; }
.about-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
}
.about-stat span { font-size: .75rem; color: var(--text-muted); font-weight: 600; }

/* ── USP Strip ─────────────────────────────────────────────────── */
.usp-strip { background: var(--green); color: var(--white); padding: 36px 0; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.usp-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}
.usp-item h4 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.usp-item p { font-size: .75rem; opacity: .75; }

/* ── Testimonials ──────────────────────────────────────────────── */
.testimonials-section { background: var(--cream-alt); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  color: var(--green);
}
.author-name { font-weight: 700; font-size: .88rem; }
.author-loc { font-size: .75rem; color: var(--text-light); }

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand .logo-text small { color: var(--gold-light); }
.footer-brand p {
  font-size: .85rem;
  opacity: .7;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}
.footer-contact { margin-top: 20px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .83rem;
  margin-bottom: 8px;
  opacity: .75;
  transition: var(--transition);
}
.footer-contact a:hover { opacity: 1; color: var(--gold-light); }
.footer-col h4 {
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: .83rem;
  opacity: .7;
  transition: var(--transition);
}
.footer-col ul li a:hover { opacity: 1; color: var(--gold-light); }
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,.75);
}
.social-btn:hover { background: var(--gold); color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: .78rem;
  opacity: .5;
}
.footer-bottom span { color: var(--gold-light); }

/* ── Page Banner ───────────────────────────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  padding: 48px 0;
  text-align: center;
}
.page-banner h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.page-banner p { opacity: .75; font-size: .9rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  margin-top: 10px;
  opacity: .7;
}
.breadcrumb a { opacity: .8; }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.breadcrumb-sep { opacity: .5; }

/* ── Shop Filters ──────────────────────────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}
.filters-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 80px;
}
.filters-sidebar h3 {
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.filter-group { margin-bottom: 24px; }
.filter-group h4 {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  cursor: pointer;
}
.filter-option input[type="radio"],
.filter-option input[type="checkbox"] {
  accent-color: var(--green);
  width: 16px; height: 16px;
  cursor: pointer;
}
.filter-option label {
  font-size: .85rem;
  cursor: pointer;
  color: var(--text-muted);
}
.filter-option input:checked + label { color: var(--green); font-weight: 700; }

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.product-count { font-size: .85rem; color: var(--text-muted); }
.sort-select {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .85rem;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--green); }

/* filter toggle chips on mobile */
.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-chip {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.filter-chip:hover, .filter-chip.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* ── Product Detail ────────────────────────────────────────────── */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 56px 0;
}
.product-gallery-wrap { position: sticky; top: 80px; }
.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-alt);
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: opacity .3s ease;
}
.gallery-thumbs {
  display: flex;
  gap: 10px;
}
.gallery-thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border);
  background: var(--cream-alt);
  transition: var(--transition);
  flex-shrink: 0;
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--green); }
.gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 6px;
}

.product-detail-info .product-sub { font-size: .8rem; }
.product-detail-info .product-name { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 8px; }
.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.rating-stars { color: var(--gold); letter-spacing: 2px; }
.rating-count { font-size: .8rem; color: var(--text-muted); }
.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.detail-price { font-size: 2rem; font-weight: 800; color: var(--green-dark); }
.detail-mrp { font-size: 1rem; color: var(--text-light); text-decoration: line-through; }
.detail-save {
  background: var(--gold-pale);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--gold-light);
}
.product-detail-size {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.divider { height: 1px; background: var(--border); margin: 20px 0; }

.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.qty-label { font-size: .88rem; font-weight: 600; color: var(--text-muted); }
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.qty-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-alt);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}
.qty-btn:hover { background: var(--green-pale); color: var(--green); }
.qty-val {
  width: 44px;
  text-align: center;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  background: transparent;
  pointer-events: none;
  color: var(--text);
}

.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-tabs { margin-top: 40px; }
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
}
.tab-btn {
  padding: 12px 20px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.tab-btn:hover { color: var(--green); }
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content p, .tab-content li { font-size: .9rem; color: var(--text-muted); line-height: 1.8; }
.tab-content ul { padding-left: 20px; list-style: disc; }
.tab-content ul li { margin-bottom: 6px; }

.ingredients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}
.ingredients-list li {
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
}

/* ── Cart ──────────────────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
  padding: 48px 0;
}
.cart-items-wrap { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.cart-items-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-items-head h2 { font-size: 1rem; font-weight: 700; }
.clear-cart { font-size: .8rem; color: #E74C3C; font-weight: 600; cursor: pointer; }
.clear-cart:hover { text-decoration: underline; }

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 80px; height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-alt);
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.cart-item-name { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.cart-item-name a:hover { color: var(--green); }
.cart-item-meta { font-size: .78rem; color: var(--text-muted); margin-bottom: 8px; }
.cart-item-price { font-size: .95rem; font-weight: 800; color: var(--green-dark); }
.cart-item-actions { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.remove-item { font-size: .75rem; color: #E74C3C; cursor: pointer; font-weight: 600; }
.remove-item:hover { text-decoration: underline; }
.cart-item-total { text-align: right; }
.item-total { font-size: 1rem; font-weight: 800; color: var(--green-dark); }
.item-per { font-size: .74rem; color: var(--text-light); margin-top: 2px; }

.cart-empty {
  text-align: center;
  padding: 60px 24px;
}
.cart-empty-icon { font-size: 3.5rem; margin-bottom: 16px; }
.cart-empty h3 { font-size: 1.1rem; margin-bottom: 8px; }
.cart-empty p { font-size: .88rem; color: var(--text-muted); margin-bottom: 24px; }

.cart-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 80px;
}
.cart-summary h3 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  margin-bottom: 10px;
  color: var(--text-muted);
}
.summary-row.total {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid var(--border);
}
.summary-row.total span:last-child { color: var(--green-dark); }
.summary-row.savings { color: var(--green); font-weight: 700; }
.coupon-row {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}
.coupon-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .85rem;
  background: var(--cream-alt);
}
.coupon-input:focus { outline: none; border-color: var(--green); background: var(--white); }
.coupon-btn {
  padding: 10px 16px;
  background: var(--green-pale);
  color: var(--green);
  font-size: .82rem;
  font-weight: 700;
  border-radius: 8px;
  transition: var(--transition);
}
.coupon-btn:hover { background: var(--green); color: var(--white); }
.summary-free-ship {
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
  text-align: center;
}

/* ── Checkout ──────────────────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
  padding: 48px 0;
}
.checkout-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.checkout-section-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkout-section-title span {
  width: 26px; height: 26px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .9rem;
  background: var(--cream-alt);
  color: var(--text);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
.payment-methods { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.payment-option {
  flex: 1;
  min-width: 120px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.payment-option:hover, .payment-option.active {
  border-color: var(--green);
  background: var(--green-pale);
}
.payment-option h5 { font-size: .85rem; font-weight: 700; }
.payment-option p { font-size: .72rem; color: var(--text-muted); }

.order-summary-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 80px;
}
.order-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.order-item:last-of-type { border-bottom: none; }
.order-item-img {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--cream-alt);
  flex-shrink: 0;
  overflow: hidden;
}
.order-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.order-item-name { font-size: .85rem; font-weight: 700; flex: 1; }
.order-item-qty { font-size: .75rem; color: var(--text-muted); }
.order-item-price { font-size: .9rem; font-weight: 800; color: var(--green-dark); }

/* ── Toast / Notification ──────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn .3s ease, toastOut .3s ease 2.5s forwards;
  pointer-events: auto;
}
.toast.error { background: #C0392B; }
.toast.success { background: var(--green); }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(20px); }
}

/* ── Loading Skeleton ──────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--cream-alt) 25%, var(--border) 50%, var(--cream-alt) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 6px;
}
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; display: none; }
  .filters-sidebar.open { display: block; }
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-gallery { grid-template-rows: 200px 140px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .product-gallery-wrap { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary-wrap { position: static; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 40px 0; gap: 24px; }
  .hero-desc { margin: 0 auto 24px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-ring { width: 280px; height: 280px; }
  .hero-image-ring img { width: 240px; height: 240px; }
  .hero-floating-badge { display: none; }
  .offers-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 160px; }
  .about-gallery img:first-child { grid-row: span 1; }
  .cart-item { grid-template-columns: 64px 1fr; }
  .cart-item-total { display: none; }
}
@media (max-width: 480px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-body { padding: 10px; }
  .hero-image-wrap { display: none; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}
