/* =====================================================
   VitalSense — Health & Wellness Store
   style.css — Mobile-First, No Framework
   ===================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg:          #f5f0e8;
  --bg-alt:      #ede8df;
  --white:       #ffffff;
  --dark:        #1a2e1a;
  --dark-alt:    #162812;
  --navy:        #1c2b3a;
  --accent:      #e8824a;
  --accent-h:    #d4713a;
  --accent-2:    #f0a832;
  --green:       #2d5016;
  --green-mid:   #3a6b1e;
  --green-card:  #1e3a14;
  --text:        #2a2a2a;
  --text-muted:  #6b6b6b;
  --text-light:  #9b9b9b;
  --border:      #e0dbd2;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --shadow:      0 2px 16px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.16);
  --transition:  0.22s ease;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 700; color: var(--dark); }

/* ---------- Utility ---------- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.flex { display: flex; }
.grid { display: grid; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* ---------- Announcement Bar ---------- */
.announcement-bar {
  background: var(--dark);
  color: #e8e0d4;
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 200;
}
.announcement-bar a { color: var(--accent); font-weight: 600; }
.announcement-bar .bar-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #e8e0d4;
  opacity: 0.6;
  font-size: 18px;
  line-height: 1;
  padding: 4px;
  transition: opacity var(--transition);
}
.announcement-bar .bar-close:hover { opacity: 1; }
.bar-ticker { display: inline-flex; gap: 48px; }
.bar-ticker span::after { content: '·'; margin-left: 48px; opacity: 0.4; }
.bar-ticker span:last-child::after { display: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(245,240,232,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity var(--transition);
}
.logo:hover { opacity: 0.75; }
.logo span { color: var(--accent); }

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  display: block;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 100px;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover,
.main-nav a.active { background: var(--dark); color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.header-icon-btn {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
  color: var(--dark);
  position: relative;
}
.header-icon-btn:hover { background: var(--bg-alt); }
.header-icon-btn svg { width: 20px; height: 20px; }

.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: transform 0.15s ease;
}
.cart-count.bump { transform: scale(1.35); }

.hamburger {
  width: 42px; height: 42px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  border-radius: 50%;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--bg-alt); }
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  visibility: hidden;
}
.mobile-nav.open { visibility: visible; }
.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.28s ease;
  backdrop-filter: blur(2px);
}
.mobile-nav.open .mobile-nav-overlay { opacity: 1; }
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: var(--bg);
  padding: 24px 20px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-close {
  align-self: flex-end;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-alt);
  margin-bottom: 12px;
  font-size: 20px;
  color: var(--dark);
  transition: background var(--transition);
}
.mobile-nav-close:hover { background: var(--border); }
.mobile-nav-panel a {
  display: block;
  padding: 13px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), padding-left var(--transition);
}
.mobile-nav-panel a:last-child { border-bottom: none; }
.mobile-nav-panel a:hover { background: var(--bg-alt); padding-left: 24px; }
.mobile-nav-panel .divider { height: 1px; background: var(--border); margin: 8px 0; }

/* ---------- Sections & Headings ---------- */
section { padding: 64px 0; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 600px;
}
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-left: auto; margin-right: auto; }
.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  border: 1.5px solid var(--dark);
  border-radius: 100px;
  transition: background var(--transition), color var(--transition);
}
.view-all-btn:hover { background: var(--dark); color: var(--white); }
.view-all-btn svg { width: 14px; height: 14px; }

/* ---------- Hero Section ---------- */
.hero {
  padding: 60px 0 80px;
  background: var(--bg);
  overflow: hidden;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.hero-content { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-title {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: var(--dark);
  border-radius: 100px;
  transition: background var(--transition), transform 0.15s ease, box-shadow var(--transition);
  min-height: 48px;
}
.btn-primary:hover {
  background: var(--dark-alt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,46,26,0.28);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.accent { background: var(--accent); }
.btn-primary.accent:hover { background: var(--accent-h); box-shadow: 0 8px 24px rgba(232,130,74,0.35); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  transition: border-color var(--transition), background var(--transition);
  min-height: 48px;
}
.btn-secondary:hover { border-color: var(--dark); background: var(--bg-alt); }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat .num {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat .label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
  font-weight: 500;
}

/* Hero Card */
.hero-visual { width: 100%; max-width: 420px; }
.hero-card {
  background: var(--green-card);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero-card-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-card-icon {
  width: 88px; height: 88px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 16px rgba(232,130,74,0.15);
}
.hero-card-icon svg { width: 44px; height: 44px; color: var(--white); }
.hero-card-title {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.hero-card-desc {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
}
.hero-card-pills {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-card-pill {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

/* ---------- Pillars Section ---------- */
.pillars { background: var(--white); }
.pillars-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.pillar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  min-width: 100px;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  color: var(--dark);
  background: var(--bg);
}
.pillar-card:hover {
  border-color: var(--dark);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.pillar-card:nth-child(1) .pillar-icon { background: #d8f0e8; }
.pillar-card:nth-child(2) .pillar-icon { background: #e8d8f0; }
.pillar-card:nth-child(3) .pillar-icon { background: #f0ead8; }
.pillar-card:nth-child(4) .pillar-icon { background: #d8e8f0; }
.pillar-card:nth-child(5) .pillar-icon { background: #f0d8d8; }
.pillar-name { font-size: 14px; font-weight: 600; }

/* ---------- Product Cards ---------- */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-alt);
}
.product-img-wrap a { display: block; height: 100%; }
.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 900;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.05em;
  transition: transform 0.35s ease;
}
.product-card:hover .product-placeholder { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-new { background: var(--dark); color: var(--white); }
.badge-sale { background: var(--accent); color: var(--white); }
.badge-best { background: var(--accent-2); color: var(--dark); }
.product-wishlist {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist:hover { transform: scale(1.15); }
.product-wishlist.active { color: #e04040; }
.product-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.product-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  transition: color var(--transition);
}
.product-card:hover .product-name { color: var(--accent); }
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.stars {
  display: flex;
  gap: 2px;
}
.stars svg { width: 13px; height: 13px; fill: var(--accent-2); }
.stars svg.empty { fill: var(--border); }
.rating-count { font-size: 12px; color: var(--text-muted); }
.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}
.price-current {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}
.price-original {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: line-through;
}
.price-save {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
}
.product-footer {
  padding: 0 14px 14px;
  display: flex;
  gap: 8px;
}
.add-to-cart-btn {
  flex: 1;
  height: 40px;
  background: var(--dark);
  color: var(--white);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background var(--transition), transform 0.15s ease;
  min-height: 44px;
  touch-action: manipulation;
}
.add-to-cart-btn:hover { background: var(--dark-alt); transform: translateY(-1px); }
.add-to-cart-btn:active { transform: translateY(0); background: var(--accent); }
.add-to-cart-btn svg { width: 15px; height: 15px; }
.quick-view-btn {
  width: 40px; height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: border-color var(--transition), background var(--transition);
  min-height: 44px;
  min-width: 44px;
}
.quick-view-btn:hover { border-color: var(--dark); background: var(--bg-alt); }
.quick-view-btn svg { width: 16px; height: 16px; }

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* ---------- Product Filter Tabs ---------- */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-tab {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
  min-height: 36px;
}
.filter-tab:hover { border-color: var(--dark); color: var(--dark); }
.filter-tab.active { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* ---------- Section: Why VitalSense (Dark) ---------- */
.why-section {
  background: var(--dark);
  padding: 80px 0;
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.why-section .section-title { color: var(--white); }
.why-section .section-subtitle { color: rgba(255,255,255,0.6); }
.why-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
.why-feature {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background var(--transition);
}
.why-feature:hover { background: rgba(255,255,255,0.1); }
.why-feature-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.why-feature h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.why-feature p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.55; }
.why-center-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  margin: 40px auto 0;
  max-width: 440px;
}
.why-center-icon {
  width: 80px; height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  box-shadow: 0 0 0 16px rgba(232,130,74,0.15);
}
.why-center-card h3 { color: var(--white); font-size: 22px; margin-bottom: 10px; }
.why-center-card p { color: rgba(255,255,255,0.6); font-size: 15px; }

/* ---------- Social Section ---------- */
.social-section { background: var(--bg); overflow: hidden; }
.social-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  text-decoration: none;
}
.social-handle svg { width: 28px; height: 28px; color: var(--accent); }
.social-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.social-grid::-webkit-scrollbar { display: none; }
.social-post {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
}
.social-post-bg {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transition: transform 0.35s ease;
}
.social-post:hover .social-post-bg { transform: scale(1.06); }
.social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.social-post:hover .social-overlay { opacity: 1; }
.social-overlay svg { width: 28px; height: 28px; color: var(--white); }

/* ---------- Reviews Section ---------- */
.reviews-section { background: var(--white); }
.overall-rating {
  text-align: center;
  margin-bottom: 48px;
}
.rating-big {
  font-size: 72px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 12px;
}
.rating-stars-big {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}
.rating-stars-big svg { width: 28px; height: 28px; fill: var(--accent-2); }
.rating-label { font-size: 18px; color: var(--text-muted); font-weight: 500; }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}
.reviewer-info h4 { font-size: 15px; font-weight: 700; color: var(--dark); }
.reviewer-info .date { font-size: 12px; color: var(--text-muted); }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--green-mid);
  font-weight: 600;
  margin-top: 10px;
}
.verified-badge svg { width: 13px; height: 13px; }

/* ---------- Blog Section ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-alt);
}
.blog-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-img-placeholder { transform: scale(1.06); }
.blog-body { padding: 20px; }
.blog-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.blog-tag {
  background: var(--bg-alt);
  padding: 3px 10px;
  border-radius: 100px;
  color: var(--accent);
  font-weight: 600;
}
.blog-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.blog-card:hover .blog-title { color: var(--accent); }
.blog-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 14px;
  transition: gap var(--transition);
}
.blog-read-more:hover { gap: 8px; }
.blog-read-more svg { width: 15px; height: 15px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--white); margin-bottom: 14px; display: block; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}
.social-icon:hover { background: var(--accent); color: var(--white); }
.social-icon svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.8); }
.footer-newsletter { margin-top: 20px; }
.footer-newsletter h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.newsletter-label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 10px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form button {
  height: 42px;
  padding: 0 18px;
  background: var(--accent);
  color: var(--white);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--accent-h); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  font-size: 13px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--dark); }
.breadcrumb span { color: var(--text-light); }
.breadcrumb .current { color: var(--dark); font-weight: 500; }

/* ---------- Product Detail ---------- */
.product-detail { padding: 40px 0 80px; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.product-gallery { position: relative; }
.gallery-main {
  aspect-ratio: 1;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  position: relative;
}
.gallery-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: border-color var(--transition);
}
.gallery-thumb.active { border-color: var(--dark); }
.product-info-col {}
.product-detail-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
.product-detail-price .price-current { font-size: 32px; font-weight: 800; }
.detail-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.detail-options { margin-bottom: 24px; }
.detail-options h4 { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.option-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.option-btn {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  min-height: 44px;
}
.option-btn.active { border-color: var(--dark); background: var(--dark); color: var(--white); }
.quantity-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.quantity-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  height: 48px;
}
.qty-btn {
  width: 44px; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--dark);
  transition: background var(--transition);
  background: transparent;
}
.qty-btn:hover { background: var(--bg-alt); }
.qty-input {
  width: 52px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  height: 100%;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  outline: none;
}
.detail-add-cart {
  width: 100%;
  height: 56px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  transition: background var(--transition), transform 0.15s ease;
  margin-bottom: 12px;
}
.detail-add-cart:hover { background: var(--dark-alt); transform: translateY(-2px); }
.detail-buy-now {
  width: 100%;
  height: 56px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  transition: background var(--transition), transform 0.15s ease;
}
.detail-buy-now:hover { background: var(--accent-h); transform: translateY(-2px); }
.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-badge svg { width: 16px; height: 16px; color: var(--green-mid); }

/* ---------- Product Tabs ---------- */
.product-tabs { margin-top: 60px; }
.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 32px;
}
.tabs-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
  cursor: pointer;
  background: none;
}
.tab-btn.active { color: var(--dark); border-bottom-color: var(--dark); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel h3 { font-size: 20px; margin-bottom: 16px; }
.tab-panel p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.tab-panel ul { list-style: disc; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.tab-panel ul li { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}
.ingredient-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.ingredient-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.ingredient-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* ---------- Cart Page ---------- */
.cart-page { padding: 40px 0 80px; }
.cart-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.cart-item-img {
  width: 88px; height: 88px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-name { font-size: 16px; font-weight: 600; margin-bottom: 4px; color: var(--dark); }
.cart-item-variant { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.cart-item-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.cart-item-total { font-size: 17px; font-weight: 700; color: var(--dark); }
.remove-btn { font-size: 13px; color: var(--text-muted); transition: color var(--transition); display: flex; align-items: center; gap: 4px; }
.remove-btn:hover { color: #e04040; }
.remove-btn svg { width: 14px; height: 14px; }
.cart-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.cart-summary h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; color: var(--dark); }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row.total { font-size: 18px; font-weight: 700; color: var(--dark); }
.checkout-btn {
  width: 100%;
  height: 56px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
  transition: background var(--transition), transform 0.15s ease;
}
.checkout-btn:hover { background: var(--dark-alt); transform: translateY(-2px); }
.promo-form { display: flex; gap: 8px; margin-top: 16px; }
.promo-form input {
  flex: 1;
  height: 42px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background: var(--bg);
  transition: border-color var(--transition);
}
.promo-form input:focus { border-color: var(--dark); }
.promo-form button {
  height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--bg-alt);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.promo-form button:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.empty-cart {
  text-align: center;
  padding: 80px 20px;
}
.empty-cart svg { width: 80px; height: 80px; color: var(--border); margin: 0 auto 20px; }
.empty-cart h2 { font-size: 24px; margin-bottom: 10px; }
.empty-cart p { color: var(--text-muted); margin-bottom: 24px; }

/* ---------- Shop / Category Pages ---------- */
.shop-header { background: var(--bg-alt); padding: 60px 0; }
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
}
.shop-sort {
  height: 40px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
}
.shop-sort:focus { border-color: var(--dark); }

/* ---------- Blog Page ---------- */
.blog-header { background: var(--bg-alt); padding: 60px 0; }

/* ---------- 404 Page ---------- */
.not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.not-found-content {}
.not-found h1 {
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 900;
  color: var(--border);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 12px;
}
.not-found h2 { font-size: clamp(22px, 4vw, 36px); margin-bottom: 12px; }
.not-found p { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; }

/* ---------- Toast Notification ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: var(--dark);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  pointer-events: none;
  max-width: calc(100vw - 48px);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* ---------- Category Page Hero ---------- */
.cat-hero {
  background: var(--bg-alt);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.cat-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cat-icon-big {
  width: 80px; height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
}

/* ---------- Scroll Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ---------- Progress Bar ---------- */
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 13px;
}
.rating-bar-label { min-width: 12px; color: var(--text-muted); font-weight: 600; }
.rating-bar-track {
  flex: 1;
  height: 8px;
  background: var(--bg-alt);
  border-radius: 100px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: var(--accent-2);
  border-radius: 100px;
  transition: width 0.8s ease;
}
.rating-bar-count { min-width: 28px; text-align: right; color: var(--text-muted); }

/* ---------- Sticky CTA (Mobile) ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 80;
  display: none;
  gap: 12px;
  align-items: center;
}

/* ---------- Responsive: 480px ---------- */
@media (min-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Responsive: 768px ---------- */
@media (min-width: 768px) {
  section { padding: 80px 0; }
  .main-nav { display: block; }
  .hamburger { display: none; }
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
  .hero-content { flex: 1; }
  .hero-visual { flex: 0 0 380px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .why-features { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .product-detail-grid { grid-template-columns: 1fr 1fr; }
  .cart-grid { grid-template-columns: 1fr 360px; }
  .ingredient-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Responsive: 1024px ---------- */
@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .why-features { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .social-post { width: 220px; height: 220px; }
  .ingredient-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Responsive: 1280px ---------- */
@media (min-width: 1280px) {
  .container { padding: 0 40px; }
  .hero-visual { flex: 0 0 440px; }
}

/* =====================================================
   Category Hero v2 + np-card shared styles
   ===================================================== */
.cat-hero-v2 {
  padding: 56px 20px 52px;
  text-align: center;
}
.cat-icon-box {
  width: 72px; height: 72px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.cat-icon-box svg { width: 30px; height: 30px; stroke: var(--dark); }
.cat-hero-v2 h1 {
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.cat-hero-v2 .cat-hero-sub {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.65;
}

.cat-products-section { padding: 40px 0 80px; }
.cat-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* np-card — new product card */
.np-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.np-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.10); transform: translateY(-2px); }
.np-img {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.np-letter {
  font-size: clamp(52px, 8vw, 72px);
  font-weight: 900; line-height: 1;
  opacity: 0.22; user-select: none; color: #000; pointer-events: none;
}
.np-cat-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 8px;
  border-radius: 999px; background: rgba(255,255,255,0.88);
  color: var(--text-muted); backdrop-filter: blur(2px);
}
.np-img a.np-cover { position: absolute; inset: 0; }
.np-body { padding: 12px 12px 0; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.np-stars { display: flex; align-items: center; gap: 3px; margin-bottom: 2px; }
.np-stars .s-row { display: flex; gap: 1px; }
.np-stars .s-row svg { width: 11px; height: 11px; fill: #f0a832; }
.np-stars .s-row svg.e { fill: #ddd; }
.np-stars .s-count { font-size: 11px; color: var(--text-muted); margin-left: 2px; }
.np-name { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: 2px; }
.np-desc {
  font-size: 11px; color: var(--text-muted); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; flex: 1;
}
.np-footer { padding: 10px 12px 12px; display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.np-prices { display: flex; align-items: baseline; gap: 5px; flex-wrap: wrap; }
.np-price-cur { font-size: 15px; font-weight: 800; color: var(--dark); }
.np-price-orig { font-size: 11px; color: var(--text-light); text-decoration: line-through; }
.np-order-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 11px; background: var(--dark); color: #fff;
  border-radius: 6px; font-size: 11px; font-weight: 700;
  white-space: nowrap; transition: background var(--transition);
  text-decoration: none; flex-shrink: 0;
}
.np-order-btn:hover { background: var(--green); color: #fff; }
.np-order-btn svg { width: 11px; height: 11px; flex-shrink: 0; }

@media (max-width: 767px) {
  .cat-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cat-products-grid { grid-template-columns: repeat(3, 1fr); }
}


/* =====================================================
   Audifort Order Page — Additional Styles
   Append to existing style.css
   ===================================================== */

/* ---------- Audifort Brand Colours ---------- */
:root {
  --audifort-primary:   #0d4f5c;
  --audifort-teal:      #1a6b7a;
  --audifort-accent:    #f5c518;   /* yellow CTA */
  --audifort-red:       #e04545;
  --audifort-blue-text: #1a8fc1;
  --audifort-dark-blue: #1a5fa6;
}

/* ---------- Audifort Typography ---------- */
.font-second       { font-family: 'Open Sans', var(--font); }
.text-white-new    { color: #fff !important; }
.text-lighter-blue { color: #7dd3f8 !important; }
.text-dark-black   { color: #1a1a1a !important; }
.text-dark-blue    { color: var(--audifort-dark-blue) !important; }
.text-red-new      { color: var(--audifort-red) !important; }

/* ---------- Audifort Section Backgrounds ---------- */
.bg-secondary-new {
  background: linear-gradient(135deg, #083a45 0%, var(--audifort-teal) 100%);
}
.bg-gradient-new {
  background: linear-gradient(160deg, #0c3d4a 0%, var(--audifort-teal) 50%, var(--audifort-primary) 100%);
}
.bg-gradient-new-dark {
  background: linear-gradient(160deg, #083040 0%, var(--audifort-primary) 100%);
}
.bg-pattern {
  background: linear-gradient(160deg, #0c3d4a 0%, var(--audifort-teal) 50%, var(--audifort-primary) 100%);
  position: relative;
}
.bg-light-second { background: #eaf5f8 !important; }
.bg-light-third  { background: #fdf8f0 !important; }
.bg-white-new    { background: #fff !important; }
.bg-primary-new  { background: linear-gradient(160deg, #0c3d4a, var(--audifort-teal)); }
.bg-references   { background: #f7f9fa; }
.bg-disclaimer   { background: rgba(255,255,255,0.05); }

/* ---------- Audifort Borders ---------- */
.border-green-light  { border: 2px solid #b8dde4 !important; }
.border-secondary    { border: 2px solid var(--audifort-primary) !important; }
.border-pink-light   { border: 2px solid #e8d5c4 !important; }
.border-primary-new-thick { border: 2px solid var(--audifort-teal) !important; }
.rounded-10 { border-radius: 10px !important; }
.rounded-20 { border-radius: 20px !important; }
.rounded-b-20 { border-radius: 0 0 20px 20px !important; }

/* ---------- CTA Button (Audifort Yellow) ---------- */
.btn-new {
  display: inline-block;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary-new {
  background: var(--audifort-accent);
  color: #222 !important;
  box-shadow: 0 4px 18px rgba(245,197,24,.35);
}
.btn-primary-new:hover {
  background: #e0b010;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,197,24,.45);
}
.btn-primary-new.animation-new.pulsing {
  animation: audifort-pulse 1.8s ease-in-out infinite;
}
@keyframes audifort-pulse {
  0%,100% { box-shadow: 0 4px 18px rgba(245,197,24,.35); transform: scale(1); }
  50%      { box-shadow: 0 6px 30px rgba(245,197,24,.6); transform: scale(1.02); }
}

/* ---------- Price Box Bonus Badge ---------- */
.price-box-o-bonus,
.price-box-o-bonus-2 {
  display: inline-block;
  background: var(--audifort-blue-text);
  color: #fff;
  padding: 4px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

/* ---------- Accordion ---------- */
.gsc-accordion { display: flex; flex-direction: column; gap: 0; }
.gsc-accordion-item {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.gsc-accordion-header {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  user-select: none;
  transition: background 0.2s;
}
.gsc-accordion-header::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.25s;
  color: rgba(255,255,255,.7);
}
.gsc-accordion-item.open .gsc-accordion-header::after { transform: rotate(45deg); }
.gsc-accordion-header:hover { background: rgba(255,255,255,.07); }
.gsc-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  color: rgba(255,255,255,.88);
  font-size: 0.92rem;
  line-height: 1.65;
}
.gsc-accordion-item.open .gsc-accordion-content { max-height: 600px; padding: 0 20px 20px; }

/* ---------- Testimonial photo strip ---------- */
.test-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 8px; }
.test-sm img { width: 100px; border-radius: 10px; }
.test-md img { width: 150px; border-radius: 10px; }
.test-lg img { width: 240px; border-radius: 10px; }
@media (max-width: 575px) {
  .test-sm { display: none; }
  .test-md img { width: 80px; }
  .test-lg img { width: 130px; }
}

/* ---------- Comparison Table ---------- */
.comparation-table .table { background: #fff; border-radius: 12px; overflow: hidden; font-size: .9rem; }
.comparation-table .table thead th { padding: 12px 10px; font-weight: 800; background: #f0f0f0; border-bottom: 2px solid #e0e0e0; }
.comparation-table .table td { padding: 10px; border-bottom: 1px solid #eee; text-align: center; }
.comparation-table .table td:first-child { text-align: left; font-weight: 500; }

/* ---------- Guarantee badge ---------- */
.money-back-badge { margin-top: -40px; position: relative; z-index: 2; }
.box-shadow-img { box-shadow: 0 6px 32px rgba(0,0,0,.14); border-radius: 20px; overflow: hidden; }

/* ---------- Bonus white-glass box ---------- */
.white-box {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  padding: 20px;
}

/* ---------- Stars ---------- */
.stars-emoji { color: #f5c518; letter-spacing: 2px; }

/* ---------- Display size for price ---------- */
.display-1 { font-size: clamp(56px, 8vw, 76px); font-weight: 900; line-height: 1; }

/* ---------- flex utility for price cards ---------- */
.flex-1 { flex: 1; }
.d-flex.flex-column { flex-direction: column; }
