/* ============================================================
   SYNEDICA PEPTIDES — Main Stylesheet
   Colours: Navy #0D1B3E | Emerald #16A34A | Gold #D4AF37
   Fonts: Playfair Display + Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0D1B3E;
  --navy-mid: #162952;
  --navy-light: #1e3a6e;
  --emerald: #16A34A;
  --emerald-dark: #0f7a37;
  --emerald-light: #22c55e;
  --gold: #D4AF37;
  --gold-light: #e8c94a;
  --gold-dark: #b8941e;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --mid-gray: #6c757d;
  --dark-gray: #343a40;
  --shadow: 0 4px 20px rgba(13,27,62,0.12);
  --shadow-lg: 0 8px 40px rgba(13,27,62,0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.2;
}

a { color: var(--emerald); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--emerald-dark); }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--navy);
  color: var(--gold);
  text-align: center;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.top-bar a { color: var(--gold); text-decoration: underline; }

/* ---- HEADER ---- */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-svg { width: 52px; height: 52px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .brand { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; color: var(--navy); letter-spacing: 0.02em; line-height: 1; }
.logo-text .tagline { font-size: 0.65rem; color: var(--gold-dark); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-size: 0.85rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; padding: 6px 0; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.active { color: var(--emerald); border-bottom-color: var(--emerald); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item > a::after { content: ' ▾'; font-size: 0.65rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-top: 3px solid var(--gold);
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 999;
}
.nav-item:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 10px 18px; font-size: 0.82rem; color: var(--navy); border-bottom: 1px solid var(--light-gray); border-bottom-width: 0; border-left: 0; }
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--off-white); color: var(--emerald); padding-left: 24px; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.btn-cart {
  background: var(--emerald);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  position: relative;
}
.btn-cart:hover { background: var(--emerald-dark); }
.cart-count {
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ---- CART SIDEBAR ---- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,62,0.5);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 95vw;
  height: 100vh;
  background: var(--white);
  z-index: 1999;
  box-shadow: -8px 0 40px rgba(13,27,62,0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open { transform: translateX(0); }

.cart-sidebar-header {
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cart-sidebar-header h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); }
.cart-close { background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; padding: 4px; line-height: 1; }

.free-delivery-bar { padding: 12px 20px; background: var(--off-white); border-bottom: 1px solid var(--light-gray); font-size: 0.8rem; }
.free-delivery-bar .bar-track { background: var(--light-gray); border-radius: 20px; height: 6px; margin-top: 6px; overflow: hidden; }
.free-delivery-bar .bar-fill { background: var(--emerald); height: 100%; border-radius: 20px; transition: width 0.4s ease; }
.free-delivery-bar .bar-label { color: var(--mid-gray); }
.free-delivery-bar .bar-label strong { color: var(--emerald); }

.cart-items { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-empty { text-align: center; padding: 40px 20px; color: var(--mid-gray); }
.cart-empty svg { margin: 0 auto 16px; opacity: 0.4; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-gray);
  align-items: flex-start;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; border: 1px solid var(--light-gray); }
.cart-item-details { flex: 1; }
.cart-item-name { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.cart-item-variant { font-size: 0.75rem; color: var(--mid-gray); margin-bottom: 8px; }
.cart-item-price { font-size: 0.9rem; font-weight: 700; color: var(--emerald); }
.cart-item-controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn { background: var(--light-gray); border: none; width: 24px; height: 24px; border-radius: 4px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.qty-btn:hover { background: var(--navy); color: var(--white); }
.qty-display { font-size: 0.85rem; font-weight: 600; min-width: 20px; text-align: center; }
.remove-item { background: none; border: none; color: var(--mid-gray); cursor: pointer; font-size: 1.1rem; margin-left: auto; padding: 4px; transition: var(--transition); }
.remove-item:hover { color: #dc2626; }

.cart-footer { padding: 20px; border-top: 2px solid var(--light-gray); flex-shrink: 0; }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.cart-subtotal .total-amount { color: var(--emerald); font-size: 1.1rem; }
.paypal-notice { font-size: 0.75rem; color: var(--mid-gray); margin-bottom: 14px; padding: 8px 12px; background: #fff9e6; border-left: 3px solid var(--gold); border-radius: 4px; }
.paypal-notice.unlocked { border-left-color: var(--emerald); background: #f0fdf4; color: var(--emerald-dark); }
.btn-checkout {
  display: block;
  width: 100%;
  background: var(--emerald);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-checkout:hover { background: var(--emerald-dark); color: var(--white); }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a6e 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 20px 70px;
  text-align: center;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 L30 0 L60 30 L30 60Z' fill='none' stroke='%23D4AF37' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  margin: 0 auto 32px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--emerald);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid var(--emerald);
  transition: var(--transition);
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero-trust { display: flex; gap: 28px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.75); }
.trust-item svg { flex-shrink: 0; }

/* ---- SECTIONS ---- */
section { padding: 60px 20px; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header .eyebrow { font-size: 0.75rem; font-weight: 700; color: var(--emerald); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--navy); }
.section-header h2 span { color: var(--gold); }
.section-header p { margin-top: 12px; color: var(--mid-gray); max-width: 560px; margin-left: auto; margin-right: auto; font-size: 0.95rem; }
.gold-divider { width: 60px; height: 3px; background: var(--gold); margin: 14px auto 0; border-radius: 2px; }

/* ---- PRODUCT GRID ---- */
.products-section { background: var(--off-white); }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.product-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1200px; gap: 20px; margin: 0 auto; }
.product-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1200px; gap: 20px; margin: 0 auto; }

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--off-white);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--emerald);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-badge.gold { background: var(--gold); color: var(--navy); }
.product-badge.sale { background: #dc2626; }

.product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-cat { font-size: 0.7rem; font-weight: 700; color: var(--emerald); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.product-name a { color: inherit; }
.product-name a:hover { color: var(--emerald); }
.product-desc { font-size: 0.82rem; color: var(--mid-gray); margin-bottom: 14px; line-height: 1.5; flex: 1; }

.product-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.price-current { font-size: 1.2rem; font-weight: 700; color: var(--emerald); font-family: 'Playfair Display', serif; }
.price-was { font-size: 0.85rem; color: var(--mid-gray); text-decoration: line-through; }
.price-from { font-size: 0.75rem; color: var(--mid-gray); }

.product-variant-select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--navy);
  margin-bottom: 12px;
  background: var(--white);
  cursor: pointer;
}
.product-variant-select:focus { outline: none; border-color: var(--emerald); }

.btn-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 11px 20px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
}
.btn-add-cart:hover { background: var(--emerald); border-color: var(--emerald); }
.btn-add-cart.added { background: var(--emerald); border-color: var(--emerald); }

/* ---- HOW IT WORKS ---- */
.how-it-works { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.step-item { text-align: center; }
.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 16px;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px dashed var(--gold);
  border-radius: 50%;
  opacity: 0.4;
}
.step-item h3 { font-size: 1rem; margin-bottom: 8px; }
.step-item p { font-size: 0.85rem; color: var(--mid-gray); }
.step-connector { display: none; }

/* ---- PAYMENT SECTION ---- */
.payment-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: var(--white); }
.payment-section .section-header h2 { color: var(--white); }
.payment-section .section-header p { color: rgba(255,255,255,0.75); }
.payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 800px; margin: 0 auto; }
.payment-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.payment-card:hover { background: rgba(255,255,255,0.12); border-color: var(--gold); }
.payment-card .payment-icon { font-size: 2rem; margin-bottom: 12px; }
.payment-card h3 { font-size: 1rem; color: var(--gold); margin-bottom: 8px; }
.payment-card p { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.payment-card .paypal-lock { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 8px; background: rgba(255,255,255,0.06); padding: 4px 10px; border-radius: 20px; }

/* ---- PARTNERSHIP SECTION ---- */
.partnership-section { background: var(--off-white); }
.partnership-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ---- ALLUVI BRAND BANNER ---- */
.alluvi-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.alluvi-banner-text h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 8px; }
.alluvi-banner-text p { color: rgba(255,255,255,0.75); font-size: 0.9rem; max-width: 500px; }
.alluvi-banner-logo { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; letter-spacing: 0.08em; white-space: nowrap; }

/* ---- SEO CONTENT BLOCK ---- */
.seo-content-section { background: var(--white); border-top: 1px solid var(--light-gray); }
.seo-content-inner { max-width: 960px; margin: 0 auto; }
.seo-content-inner h2 { font-size: 1.6rem; margin-bottom: 16px; color: var(--navy); }
.seo-content-inner h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--navy-mid); }
.seo-content-inner p { font-size: 0.92rem; color: var(--dark-gray); line-height: 1.7; margin-bottom: 14px; }
.seo-content-inner ul { padding-left: 20px; margin-bottom: 14px; }
.seo-content-inner ul li { font-size: 0.92rem; color: var(--dark-gray); line-height: 1.7; margin-bottom: 6px; }
.seo-keyword { color: var(--emerald); font-weight: 600; }

/* ---- FAQ SECTION ---- */
.faq-section { background: var(--off-white); }
.faq-grid { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  user-select: none;
  transition: var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question .faq-icon { font-size: 1.2rem; color: var(--emerald); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner { padding: 0 24px 18px; font-size: 0.88rem; color: var(--mid-gray); line-height: 1.7; border-top: 1px solid var(--light-gray); padding-top: 14px; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ---- DELIVERY BADGES ---- */
.delivery-strip {
  background: var(--navy);
  padding: 20px;
}
.delivery-strip-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.delivery-badge { display: flex; align-items: center; gap: 10px; color: var(--white); }
.delivery-badge svg { color: var(--gold); flex-shrink: 0; }
.delivery-badge-text strong { display: block; font-size: 0.88rem; font-weight: 700; }
.delivery-badge-text span { font-size: 0.75rem; color: rgba(255,255,255,0.65); }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.testimonial-text { font-size: 0.88rem; color: var(--dark-gray); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.85rem; color: var(--navy); }
.testimonial-location { font-size: 0.75rem; color: var(--mid-gray); }

/* ---- CATEGORY PAGE ---- */
.category-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 20px 50px;
  color: var(--white);
  text-align: center;
}
.category-header h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 12px; }
.category-header p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; align-items: center; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ---- SHOP FILTERS ---- */
.shop-controls {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 16px 20px;
  position: sticky;
  top: 82px;
  z-index: 100;
}
.shop-controls-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.search-input {
  flex: 1;
  min-width: 200px;
  padding: 9px 16px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--navy);
}
.search-input:focus { outline: none; border-color: var(--emerald); }
.filter-select {
  padding: 9px 14px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}
.filter-select:focus { outline: none; border-color: var(--emerald); }
.results-count { font-size: 0.82rem; color: var(--mid-gray); margin-left: auto; white-space: nowrap; }

/* ---- PRODUCT PAGE ---- */
.product-single { padding: 50px 20px; }
.product-single-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; align-items: start; }
.product-gallery .main-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1; background: var(--off-white); margin-bottom: 12px; }
.product-gallery .main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery .thumb-row { display: flex; gap: 10px; }
.product-gallery .thumb { width: 72px; height: 72px; border-radius: var(--radius); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.product-gallery .thumb:hover, .product-gallery .thumb.active { border-color: var(--gold); }
.product-gallery .thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 8px; }
.product-info .product-sku { font-size: 0.78rem; color: var(--mid-gray); margin-bottom: 16px; }
.product-info .rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.product-info .stars { color: var(--gold); }
.product-info .review-count { font-size: 0.8rem; color: var(--mid-gray); }
.product-price-box { background: var(--off-white); border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 20px; }
.product-price-box .main-price { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--emerald); }
.product-price-box .was-price { font-size: 0.95rem; color: var(--mid-gray); text-decoration: line-through; margin-left: 12px; }
.product-price-box .saving { display: inline-block; background: #fef2f2; color: #dc2626; font-size: 0.78rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-left: 12px; }
.product-price-box .tax-note { font-size: 0.75rem; color: var(--mid-gray); margin-top: 6px; }

.variant-label { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.variant-select-wrap { margin-bottom: 20px; }
.variant-select-wrap select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}
.variant-select-wrap select:focus { border-color: var(--emerald); outline: none; }

.add-to-cart-section { display: flex; gap: 12px; margin-bottom: 24px; }
.qty-input-wrap { display: flex; align-items: center; gap: 0; border: 2px solid var(--light-gray); border-radius: var(--radius); overflow: hidden; }
.qty-input-wrap button { background: var(--off-white); border: none; width: 40px; height: 48px; font-size: 1.2rem; cursor: pointer; transition: var(--transition); }
.qty-input-wrap button:hover { background: var(--navy); color: var(--white); }
.qty-input-wrap input { width: 48px; height: 48px; border: none; text-align: center; font-size: 1rem; font-weight: 600; color: var(--navy); }
.qty-input-wrap input:focus { outline: none; }
.btn-add-cart-lg {
  flex: 1;
  background: var(--emerald);
  color: var(--white);
  border: 2px solid var(--emerald);
  border-radius: var(--radius);
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-add-cart-lg:hover { background: var(--emerald-dark); }

.product-meta-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.meta-badge { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--mid-gray); }
.meta-badge svg { color: var(--emerald); flex-shrink: 0; }

.product-tabs { margin-top: 40px; }
.tab-headers { display: flex; gap: 0; border-bottom: 2px solid var(--light-gray); margin-bottom: 24px; }
.tab-btn {
  padding: 12px 24px;
  border: none;
  background: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mid-gray);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.tab-btn.active { color: var(--navy); border-bottom-color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content p { font-size: 0.9rem; color: var(--dark-gray); line-height: 1.7; margin-bottom: 14px; }
.tab-content h3 { font-size: 1rem; color: var(--navy); margin: 20px 0 10px; }
.tab-content ul { padding-left: 20px; }
.tab-content ul li { font-size: 0.9rem; color: var(--dark-gray); margin-bottom: 6px; line-height: 1.6; }

/* ---- CHECKOUT / ORDER PAGE ---- */
.order-page { background: var(--off-white); min-height: calc(100vh - 200px); }
.order-page-header { background: var(--navy); padding: 40px 20px; text-align: center; color: var(--white); }
.order-page-header h1 { color: var(--white); font-size: 2rem; margin-bottom: 8px; }
.order-page-header p { color: rgba(255,255,255,0.7); }

.checkout-steps { display: flex; justify-content: center; gap: 0; margin-bottom: 40px; padding: 0 20px; }
.checkout-step { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; max-width: 140px; position: relative; }
.checkout-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--light-gray);
  z-index: 0;
}
.checkout-step.done::after { background: var(--emerald); }
.step-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--light-gray); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: var(--mid-gray); z-index: 1; position: relative; transition: var(--transition); }
.checkout-step.active .step-circle { background: var(--emerald); color: var(--white); }
.checkout-step.done .step-circle { background: var(--navy); color: var(--gold); }
.step-label { font-size: 0.72rem; font-weight: 600; color: var(--mid-gray); text-align: center; }
.checkout-step.active .step-label { color: var(--emerald); }

.order-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; max-width: 1100px; margin: 0 auto; padding: 0 20px 60px; }
.order-form-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.order-form-panel h2 { font-size: 1.2rem; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--light-gray); color: var(--navy); }
.order-summary-panel {
  position: sticky;
  top: 100px;
}
.order-summary-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}
.order-summary-box h3 { font-size: 1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--light-gray); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--emerald); outline: none; box-shadow: 0 0 0 3px rgba(22,163,74,0.1); }
.form-group textarea { resize: vertical; min-height: 80px; }

.shipping-option {
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 14px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  transition: var(--transition);
}
.shipping-option:hover, .shipping-option.selected { border-color: var(--emerald); background: #f0fdf4; }
.shipping-option input[type=radio] { accent-color: var(--emerald); }
.shipping-option-details { flex: 1; }
.shipping-option-name { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.shipping-option-desc { font-size: 0.78rem; color: var(--mid-gray); }
.shipping-option-price { font-weight: 700; color: var(--emerald); font-size: 0.92rem; }

.payment-option {
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  transition: var(--transition);
}
.payment-option:hover { border-color: var(--navy); }
.payment-option.selected { border-color: var(--emerald); background: #f0fdf4; }
.payment-option.locked { opacity: 0.5; cursor: not-allowed; }
.payment-option input[type=radio] { accent-color: var(--emerald); margin-top: 2px; }
.payment-option-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.payment-option-desc { font-size: 0.78rem; color: var(--mid-gray); margin-top: 3px; line-height: 1.5; }
.payment-option .lock-notice { font-size: 0.72rem; color: #dc2626; font-weight: 600; margin-top: 4px; }

.order-summary-line { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 8px; color: var(--dark-gray); }
.order-summary-line.total { font-weight: 700; font-size: 1rem; color: var(--navy); border-top: 2px solid var(--light-gray); padding-top: 12px; margin-top: 8px; }
.order-summary-line .amount { font-weight: 600; }
.order-summary-line.total .amount { color: var(--emerald); font-family: 'Playfair Display', serif; font-size: 1.2rem; }

.btn-place-order {
  width: 100%;
  background: var(--emerald);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 16px;
}
.btn-place-order:hover { background: var(--emerald-dark); }

.terms-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.8rem; color: var(--mid-gray); line-height: 1.5; }
.terms-check input { accent-color: var(--emerald); margin-top: 2px; flex-shrink: 0; }
.terms-check a { color: var(--emerald); }

/* ---- ORDER CONFIRMATION ---- */
.order-confirmation {
  text-align: center;
  padding: 60px 20px;
  max-width: 600px;
  margin: 0 auto;
}
.order-confirmation .tick { font-size: 4rem; margin-bottom: 20px; }
.order-confirmation h2 { font-size: 2rem; color: var(--navy); margin-bottom: 14px; }
.order-confirmation p { color: var(--mid-gray); margin-bottom: 20px; line-height: 1.7; }
.order-confirmation .order-ref { background: var(--off-white); border: 1px solid var(--light-gray); border-radius: var(--radius); padding: 16px 24px; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); font-weight: 700; margin: 20px 0; }

/* ---- ABOUT / STANDARD PAGES ---- */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 70px 20px 60px; text-align: center; color: var(--white); }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }
.page-content { padding: 60px 20px; max-width: 900px; margin: 0 auto; }
.page-content h2 { font-size: 1.5rem; margin: 32px 0 12px; color: var(--navy); }
.page-content h3 { font-size: 1.1rem; margin: 24px 0 8px; color: var(--navy-mid); }
.page-content p { font-size: 0.92rem; color: var(--dark-gray); line-height: 1.8; margin-bottom: 14px; }
.page-content ul, .page-content ol { padding-left: 22px; margin-bottom: 14px; }
.page-content li { font-size: 0.92rem; color: var(--dark-gray); line-height: 1.7; margin-bottom: 6px; }
.page-content .highlight-box { background: var(--off-white); border-left: 4px solid var(--gold); padding: 18px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin: 20px 0; }

/* ---- DISCLAIMER BANNER ---- */
.disclaimer-banner {
  background: #fff9e6;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.8rem;
  color: #7a5c00;
  line-height: 1.5;
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.disclaimer-banner strong { color: var(--gold-dark); }

/* ---- FOOTER ---- */
.site-footer { background: var(--navy); color: var(--white); padding: 60px 20px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 16px 0 20px; }
.footer-brand .contact-info { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.footer-brand .contact-info a { color: var(--gold); }
.footer-brand .contact-info a:hover { color: var(--gold-light); }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.65); margin-left: 16px; font-size: 0.78rem; }
.footer-bottom a:hover { color: var(--gold); }
.footer-reg { font-size: 0.72rem; color: rgba(255,255,255,0.35); text-align: center; padding-bottom: 20px; max-width: 1200px; margin: 0 auto; line-height: 1.6; }

/* ---- NOTIFICATIONS ---- */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 360px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { color: var(--emerald); flex-shrink: 0; }

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-emerald { color: var(--emerald); }
.mt-8 { margin-top: 32px; }
.hidden { display: none !important; }
.view-all-link { text-align: center; margin-top: 32px; }
.view-all-link a {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 12px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: var(--transition);
}
.view-all-link a:hover { background: var(--navy); color: var(--gold); }

.badge-strip { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 40px; }
.badge-item { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--mid-gray); }
.badge-item svg { color: var(--emerald); }

/* ---- MOBILE NAV ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy);
  z-index: 9998;
  flex-direction: column;
  padding: 80px 32px 32px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--white); font-size: 1.1rem; font-weight: 600; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: block; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--white); font-size: 1.8rem; cursor: pointer; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .product-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .product-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .product-single-grid { grid-template-columns: 1fr; gap: 28px; }
  .order-layout { grid-template-columns: 1fr; }
  .order-summary-panel { position: static; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 50px 20px 40px; }
  .alluvi-banner { flex-direction: column; padding: 24px; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-grid-4 { grid-template-columns: 1fr; }
  .product-grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .delivery-strip-inner { gap: 20px; flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 16px; }
  .header-inner { gap: 12px; }
  .logo-text .brand { font-size: 1.1rem; }
  .cart-sidebar { width: 100vw; }
}
