/* ═══════════════════════════════════════════════════════════════
   EcoPaw Pets — Premium UK Pet Store
   Complete Design System v3.0 — Conversion Optimized
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  /* Atelier Luxury v4.0 — Muted & Organic */
  --forest:    #1A2D24;       /* Deeper, more muted forest */
  --forest-l:  #2D4A3E;
  --forest-xl: #4A6B5D;
  --sage:      #F4F7F5;       /* Bone Sage - Very light background */
  --sage-l:    #E9EEEB;
  --cream:     #FAF9F6;       /* Bone White */
  --sand:      #D8C6B1;
  --gold:      #C5A059;       /* Antique Gold */
  --gold-l:    #D4B47B;
  --coral:     #C66B53;       /* Terracotta / Muted Coral */
  --coral-d:   #AC5A45;
  --coral-l:   #D98B78;
  --charcoal:  #121212;
  --grey-900:  #212529;
  --grey-700:  #4A504E;
  --grey-500:  #8A918E;
  --grey-300:  #D1D5D3;
  --grey-100:  #F8F9F8;
  --white:     #FFFFFF;
  
  --radius:    10px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --grey-200:  #E8EBE9;
  
  --shadow-sm: 0 2px 8px rgba(26,45,36,0.04);
  --shadow-md: 0 10px 30px rgba(26,45,36,0.06);
  --shadow-lg: 0 20px 50px rgba(26,45,36,0.1);
  --shadow-xl: 0 30px 80px rgba(26,45,36,0.15);
  --shadow-glow: 0 0 40px rgba(198,107,83,0.2);
  
  --transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  --container: 1240px;
}

/* ── Reset & Texture ── */
*, *::before, *::after { 
  margin: 0; padding: 0; box-sizing: border-box; 
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100vw; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Subtle grain texture overlay */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { cursor: pointer; border: none; background: none; font-family: inherit; transition: var(--transition); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400; /* Lighter weight for premium look */
  line-height: 1.15;
  letter-spacing: -0.01em;
}

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

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--forest);
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.announcement-bar strong { color: var(--sage); }
.bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .announcement-bar { font-size: 0.72rem; padding: 10px 12px; }
  .bar-inner { flex-direction: column; gap: 4px; }
}

/* ── Header ── */
.site-header {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(27,67,50,0.08); border-bottom-color: transparent; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  letter-spacing: -0.01em;
}
.logo:hover { opacity: 0.85; }
.logo .paw {
  font-size: 1.4rem;
  line-height: 1;
}
.logo em {
  font-style: italic;
  color: var(--forest-l);
  font-weight: 500;
}

.main-nav { display: flex; gap: 32px; align-items: center; }
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey-700);
  transition: var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--forest);
  transition: var(--transition);
  border-radius: 2px;
}
.main-nav a:hover { color: var(--forest); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-actions a { color: var(--grey-700); font-size: 1.2rem; transition: var(--transition); }
.header-actions a:hover { color: var(--forest); }

.cart-btn {
  position: relative;
  background: var(--forest);
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 0.84rem !important;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}
.cart-btn:hover { background: var(--forest-l); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(27,67,50,0.2); }
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--coral);
  color: white;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ── Hero Split Layout ── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  overflow: hidden;
  max-width: 100vw;
}

/* LEFT PANEL — solid dark, text always readable */
.hero-left {
  background: var(--forest);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(106,153,85,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left-inner {
  padding: 60px 60px 60px 5vw;
  color: var(--white);
  animation: fadeInUp 0.8s ease-out both;
  position: relative;
  z-index: 1;
}

/* RIGHT PANEL — premium image, no text on top */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  will-change: transform;
}
/* Removed heroZoom infinite animation — causes trembling */

/* Brand Stamp — floats on image */
.hero-brand-stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(27,67,50,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  animation: fadeInUp 1s ease-out 0.5s both;
}
.stamp-paw { font-size: 1.4rem; }
.stamp-text em { font-style: italic; color: var(--gold-l, #d4af37); }

/* Vet Trust Badge — bottom of image */
.hero-trust-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 12px 18px;
  color: var(--forest);
  font-size: 0.85rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  animation: fadeInUp 1s ease-out 0.8s both;
  line-height: 1.4;
}
.hero-trust-badge strong { display: block; font-size: 0.9rem; color: var(--forest); }

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.2);
  animation: fadeInRight 0.6s ease-out 0.3s both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #4cff8f;
  border-radius: 50%;
  flex-shrink: 0;
}
/* dotPulse removed — was causing hero badge trembling */

/* Hero headings */
.hero-h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-l, #d4af37);
}
.hero-sub {
  font-size: 1.1rem;
  opacity: 0.88;
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 480px;
}

/* Urgency countdown bar */
.hero-urgency {
  background: rgba(231,111,81,0.15);
  border: 1px solid rgba(231,111,81,0.3);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.9rem;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.9);
}

/* Hero buttons */
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-cta-main {
  font-size: 1.05rem !important;
  padding: 18px 32px !important;
  border-radius: 14px !important;
}
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.12); border-color: white; }

/* Social proof micro widget */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  opacity: 0.8;
  margin-bottom: 32px;
  font-style: italic;
}
.proof-avatars { display: flex; }
.proof-avatar {
  font-size: 1.3rem;
  margin-right: -4px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-stat strong { display: block; font-size: 1.6rem; font-family: 'Playfair Display', serif; color: var(--gold-l, #d4af37); }
.hero-stat span { font-size: 0.72rem; opacity: 0.65; text-transform: uppercase; letter-spacing: 0.08em; }

/* Legacy hero (keep for other pages) */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(27,67,50,0.95) 0%, rgba(27,67,50,0.88) 30%, rgba(27,67,50,0.5) 55%, rgba(0,0,0,0.1) 100%); z-index: 1; }
@keyframes fadeInUp { 0%{opacity:0;transform:translateY(30px)} 100%{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { 0%{opacity:0;transform:translateX(-20px)} 100%{opacity:1;transform:translateX(0)} }
@keyframes scrollReveal { 0%{opacity:0;transform:translateY(40px)} 100%{opacity:1;transform:translateY(0)} }
.hero-content { position: relative; z-index: 2; max-width: 580px; color: var(--white); padding: 40px 0; animation: fadeInUp 0.8s ease-out both; }

/* Responsive hero split */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; overflow-x: hidden; }
  .hero-right { min-height: 50vw; max-height: 60vh; order: -1; }
  .hero-left { overflow: visible; }
  .hero-left-inner { padding: 40px 20px; max-width: 100vw; box-sizing: border-box; overflow-wrap: break-word; word-wrap: break-word; }
  .hero-h1 { font-size: 2rem; }
}
@media (max-width: 480px) {
  .hero-left-inner { padding: 30px 16px; }
  .hero-h1 { font-size: 1.8rem !important; }
  .hero-sub { font-size: 0.88rem !important; }
  .hero-badge { font-size: 0.6rem !important; }
  .hero-stats { flex-direction: column; gap: 10px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns a, .hero-btns .btn { width: 100%; text-align: center; }
}


/* ── Trust Strip ── */
.trust-strip {
  background: var(--sage-l);
  padding: 18px 0;
  border-bottom: none;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.01em;
}
.trust-item .icon { font-size: 1.1rem; }

/* ── Press Strip ── */
.press-strip {
  background: var(--white);
  border-bottom: 1px solid var(--grey-300);
  padding: 20px 0;
}
.press-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.press-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey-500);
  white-space: nowrap;
}
.press-logos {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.press-logos span {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--grey-500);
  opacity: 0.6;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.press-logos span:hover { opacity: 1; color: var(--forest); }

/* ── Why EcoPaw Pets Section ── */
.why-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--sage-l) 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

.why-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(27,67,50,0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest) 0%, var(--forest-xl) 100%);
  transform: scaleX(0);
  transition: var(--transition);
}
.why-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-item:hover::before { transform: scaleX(1); }

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.why-item h3 {
  font-size: 1.05rem;
  font-family: 'Playfair Display', serif;
  color: var(--forest);
  margin-bottom: 10px;
}
.why-item p {
  font-size: 0.88rem;
  color: var(--grey-700);
  line-height: 1.65;
}

/* ── Section Titles ── */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title .label {
  display: inline-block;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.section-title h2 {
  font-size: 2.8rem;
  color: var(--forest);
  margin-bottom: 16px;
}
.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--grey-700);
  font-size: 1.1rem;
}


/* ── Lifestyle Banner ── */
.lifestyle-banner {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.lifestyle-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  max-width: none;
}
.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27,67,50,0.96) 0%, rgba(27,67,50,0.88) 38%, rgba(27,67,50,0.5) 65%, rgba(0,0,0,0.05) 100%);
}
.lifestyle-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 60px 0;
  max-width: 620px;
}
.lifestyle-label {
  display: inline-block;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.lifestyle-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.lifestyle-h2 em { font-style: italic; color: var(--gold-l); }
.lifestyle-p {
  font-size: 1.08rem;
  opacity: 0.88;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}
.lifestyle-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.lifestyle-stats div { display: flex; flex-direction: column; gap: 4px; }
.lifestyle-stats strong { font-size: 1.7rem; font-family: 'Playfair Display', serif; color: var(--gold-l); line-height: 1; }
.lifestyle-stats span { font-size: 0.72rem; opacity: 0.65; text-transform: uppercase; letter-spacing: 0.06em; }
.lifestyle-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Bundles Section ── */
.bundles-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
  color: white;
}
.bundles-title h2 { color: white; }
.bundles-title p { color: rgba(255,255,255,0.75); }
.bundles-label {
  background: rgba(255,255,255,0.12) !important;
  color: white !important;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
}
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 1100px) { .bundles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .bundles-grid { grid-template-columns: 1fr; } }

.bundle-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.bundle-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.bundle-featured {
  border-color: var(--gold-l);
  border-width: 2px;
  background: rgba(255,255,255,0.1);
}
.bundle-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-l) 100%);
}
.bundle-popular-badge {
  display: inline-flex;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bundle-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.bundle-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}
.bundle-items {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bundle-items li {
  font-size: 0.84rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bundle-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.bundle-price { font-size: 1.6rem; font-weight: 900; font-family: 'Playfair Display', serif; }
.bundle-was { font-size: 0.9rem; text-decoration: line-through; opacity: 0.45; }
.bundle-save {
  background: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.bundle-cta {
  display: block;
  text-align: center;
  background: white;
  color: var(--forest);
  padding: 13px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.bundle-cta:hover { background: var(--coral); color: white; transform: scale(1.02); }
.bundle-featured .bundle-cta {
  background: var(--gold-l);
  color: var(--forest);
}
.bundle-featured .bundle-cta:hover { background: var(--coral); color: white; }
.bundles-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.82rem;
  opacity: 0.6;
  letter-spacing: 0.02em;
}

/* ── Btn base (ensure available everywhere) ── */
.btn {
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

@keyframes ctaGlow { 
  0%, 100% { box-shadow: 0 4px 20px rgba(231,111,81,0.3); } 
  50% { box-shadow: 0 8px 35px rgba(231,111,81,0.5); } 
}

@keyframes shimmer {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(200%) skewX(-15deg); }
}

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

.btn-cta {
  background: linear-gradient(135deg, var(--coral) 0%, #e85d3a 100%);
  color: var(--white) !important;
  box-shadow: 0 4px 20px rgba(231,111,81,0.3);
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  display: none; /* shimmer removed — causes flickering */
}

.btn-cta:hover { 
  background: linear-gradient(135deg, #d44f32 0%, #c03e24 100%); 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 10px 40px rgba(231,111,81,0.6);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  background: var(--charcoal);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-md);
  /* float animation removed — causes badge trembling */
}

.product-badge.sale { background: var(--coral); }
.product-badge.new { background: var(--forest); }

.btn-ghost { 
  background: rgba(255,255,255,0.05); 
  color: var(--white); 
  border: 1px solid rgba(255,255,255,0.3); 
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { 
  background: rgba(255,255,255,0.15); 
  border-color: white; 
  transform: translateY(-2px);
}

.btn-dark { 
  background: var(--forest); 
  color: var(--white); 
  box-shadow: 0 4px 15px rgba(27,67,50,0.2);
}
.btn-dark:hover { 
  background: var(--charcoal); 
  transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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


.products-section { padding: 100px 0; }

/* Category Filter Buttons */
.cat-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--grey-300);
  background: white;
  color: var(--grey-700);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.cat-btn:hover {
  border-color: var(--forest);
  color: var(--forest);
  background: var(--sage-l);
}
.cat-btn.active {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-300);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(27,67,50,0.15);
  border-color: var(--forest-xl);
}
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--coral));
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover::after { opacity: 1; }

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  background: var(--coral);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-badge.new { background: var(--forest); }
.product-badge.sale { background: var(--coral); }

.product-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--grey-100);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.1); }

.product-info { padding: 24px; }
.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-500);
  margin-bottom: 6px;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 8px;
}
.product-desc {
  font-size: 0.88rem;
  color: var(--grey-700);
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.stars { color: #F59E0B; font-size: 0.85rem; letter-spacing: 2px; }
.rating-count { font-size: 0.8rem; color: var(--grey-500); }

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--forest);
}
.product-price .was {
  font-size: 0.85rem;
  color: var(--coral-d);
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 6px;
}

.add-to-cart {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-l) 100%);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.add-to-cart:hover { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-d) 100%); transform: scale(1.05); box-shadow: var(--shadow-glow); }

/* ── Featured / Banner ── */
.featured-banner {
  padding: 80px 0;
  background: var(--sage-l);
}
.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.featured-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.featured-img img { width: 100%; }
.featured-text h2 { font-size: 2.4rem; color: var(--forest); margin-bottom: 16px; }
.featured-text p { color: var(--grey-700); margin-bottom: 24px; font-size: 1.05rem; }
.featured-perks { margin-bottom: 30px; }
.featured-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--grey-700);
}
.featured-perks li .icon { font-size: 1.2rem; }

/* ── Reviews ── */
.reviews-section {
  padding: 100px 0;
  background: var(--grey-100);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-300);
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.review-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-text {
  font-size: 0.95rem;
  color: var(--grey-700);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--forest);
}
.reviewer-name { font-weight: 600; font-size: 0.9rem; }
.reviewer-loc { font-size: 0.8rem; color: var(--grey-500); }
.review-verified {
  font-size: 0.75rem;
  color: var(--forest-l);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
}

/* ── Why Us Strip ── */
.why-us {
  padding: 80px 0;
  background: var(--forest);
  color: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.why-item .icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-item h4 { font-size: 1.1rem; margin-bottom: 8px; font-family: 'Playfair Display', serif; }
.why-item p { font-size: 0.85rem; opacity: 0.8; line-height: 1.6; }

/* ── Newsletter ── */
.newsletter-section {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}
.newsletter-box {
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-box h2 {
  font-size: 2.2rem;
  color: var(--forest);
  margin-bottom: 12px;
}
.newsletter-box p {
  color: var(--grey-700);
  margin-bottom: 30px;
}
.newsletter-form {
  display: flex;
  gap: 12px;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid var(--grey-300);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}
.newsletter-form input:focus { outline: none; border-color: var(--forest); }
.newsletter-form button {
  padding: 16px 28px;
  background: var(--coral);
  color: white;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--coral-d); }
.newsletter-note {
  font-size: 0.8rem;
  color: var(--grey-500);
  margin-top: 12px;
}

/* ── Footer ── */
.site-footer {
  background: var(--grey-900);
  color: var(--grey-300);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand p { font-size: 0.9rem; margin-top: 16px; line-height: 1.7; opacity: 0.7; }
.footer-col h4 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 10px;
  opacity: 0.7;
  transition: var(--transition);
}
.footer-col a:hover { opacity: 1; color: var(--sage); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; opacity: 0.5; }
.payment-icons { display: flex; gap: 12px; }
.payment-icons span {
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── FAQ Section ── */
.faq-section { padding: 100px 0; }
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--grey-300);
  padding: 24px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--grey-900);
  text-align: left;
  padding: 0;
  cursor: pointer;
}
.faq-q .toggle { font-size: 1.5rem; color: var(--coral); transition: var(--transition); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 16px; }
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-a p { font-size: 0.92rem; color: var(--grey-700); line-height: 1.7; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat strong { font-size: 1.3rem; }
  .main-nav { display: none; }
  .section-title h2 { font-size: 2rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 20px; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero h1 { font-size: 1.8rem; }
}

/* ── Mobile Hamburger Menu ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--grey-900);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  padding: 80px 32px 32px;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 18px 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--grey-900);
  border-bottom: 1px solid var(--grey-300);
}
.mobile-menu a:hover { color: var(--coral); }
.mobile-menu .close-menu {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--grey-700);
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--grey-900);
  color: var(--grey-300);
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.85rem; flex: 1; min-width: 300px; }
.cookie-inner p a { color: var(--sage); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-accept {
  padding: 10px 24px;
  background: var(--sage);
  color: var(--forest);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}
.cookie-decline {
  padding: 10px 24px;
  background: transparent;
  color: var(--grey-300);
  border: 1px solid var(--grey-500);
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
}

/* ── Premium Entrance Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 6px 20px rgba(231,111,81,0.4); }
  50% { box-shadow: 0 8px 40px rgba(231,111,81,0.7); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Product Cards */
.product-card {
  opacity: 0;
  animation: fadeInUp 0.6s var(--bounce) forwards;
}
.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }
.product-card:nth-child(9) { animation-delay: 0.45s; }
.product-card:nth-child(10) { animation-delay: 0.5s; }

/* CTA Pulse Glow — Redundant section removed */
.btn-cta::after {
  display: none;
}

/* Product Card Hover Premium */
.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(27,67,50,0.18);
  border-color: var(--sage);
}
.product-card:hover .product-img img {
  transform: scale(1.12);
}
.product-card:hover .add-to-cart {
  background: var(--coral);
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(231,111,81,0.4);
}

/* Badge Float removed */


/* Review Card Hover */
.review-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Hero Animation */
.hero-content {
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}
.hero-badge {
  animation: bounceIn 0.8s var(--bounce) 0.5s forwards;
  opacity: 0;
}
.hero h1 {
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}
.hero p {
  animation: fadeInUp 0.8s ease 0.8s forwards;
  opacity: 0;
}
.hero-btns {
  animation: fadeInUp 0.8s ease 1s forwards;
  opacity: 0;
}
.hero-stats {
  animation: fadeInUp 0.8s ease 1.2s forwards;
  opacity: 0;
}

/* Trust Strip Animate */
.trust-item {
  transition: var(--transition);
}
.trust-item:hover {
  transform: scale(1.1);
  color: var(--forest);
}

/* Why Us Items Hover */
.why-item {
  transition: var(--transition);
  padding: 20px;
  border-radius: var(--radius-lg);
}
.why-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

/* Cart Button Bounce on Update */
@keyframes cartBounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.3); }
  60% { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.cart-count.bounce {
  animation: cartBounce 0.5s var(--bounce);
}

/* Announcement Bar Shimmer — removed flickering */
.announcement-bar {
  background: var(--forest);
}

/* Section Title Animation */
.section-title .label {
  animation: fadeInUp 0.6s ease forwards;
}
.section-title h2 {
  animation: fadeInUp 0.6s ease 0.1s forwards;
}

/* Newsletter Hover */
.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(231,111,81,0.4);
}

/* Footer Link Hover */
.footer-col a:hover {
  transform: translateX(4px);
  color: var(--sage) !important;
}

/* Press strip now uses single definition at top — see line ~462 */

/* Quick View Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  display: none;
  backdrop-filter: blur(4px);
}
.overlay.active { display: block; }

/* Smooth Image Loading */
img {
  transition: opacity 0.5s ease;
}
img[loading="lazy"] {
  opacity: 0;
}
img[loading="lazy"].loaded {
  opacity: 1;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--grey-100); }
::-webkit-scrollbar-thumb {
  background: var(--sage);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--forest-l); }

/* Selection */
::selection {
  background: var(--sage);
  color: var(--forest);
}

/* ═══ PREMIUM MICRO-ANIMATIONS ═══ */

/* Gold accent for premium elements */
:root {
  --gold: #D4A76A;
  --gold-l: #E8C99B;
}

/* Product card enhanced hover */
.product-card {
  transition: transform 0.4s var(--bounce), box-shadow 0.4s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(27,67,50,0.15);
}
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.4s ease;
  background: linear-gradient(135deg, rgba(149,213,178,0.08), rgba(27,67,50,0.04));
  pointer-events: none;
}
.product-card:hover::after { opacity: 1; }

/* Badge shimmer removed to prevent flickering */
.product-badge::after {
  display: none;
}

/* CTA button pulse glow removed — cause of the 'trembling' */
.btn-cta::before {
  display: none;
}

/* Scroll reveal animation */
.section-title, .product-card, .review-card, .newsletter-box, .faq-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-title.visible, .product-card.visible, .review-card.visible, .newsletter-box.visible, .faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Trust strip — static, no animation */
.trust-strip {
  overflow: hidden;
}
.trust-items {
  display: flex;
}

/* Hero text entrance */
.hero-content {
  animation: heroFadeIn 1s ease-out;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Newsletter glow border */
.newsletter-box {
  position: relative;
}
.newsletter-box::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--sage), var(--gold), var(--coral), var(--sage));
  background-size: 300% 300%;
  animation: borderGlow 10s ease infinite;
  z-index: -1;
  border-radius: var(--radius-lg);
}
@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Smooth number counter animation */
@keyframes countUp {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}
.hero-stat strong {
  animation: countUp 0.6s var(--bounce) forwards;
}

/* Mobile sticky CTA enhanced */
@media(max-width:768px) {
  .mobile-cta-bar {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
}

/* ── Scroll Reveal Animation System ── */
/* Elements are VISIBLE by default — JS adds 'will-reveal' to prep them for animation */
/* This prevents text from ever disappearing if JS is slow or blocked */
.will-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.will-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Legacy class — safe fallback: starts visible */
.scroll-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-reveal.reveal-hidden {
  opacity: 0;
  transform: translateY(30px);
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Product Card Image Hover Zoom ── */
.product-card .product-img img {
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.06);
}

/* ── CTA Pulse (draws eye to main action) ── */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(231,111,81,0.3); }
  50% { box-shadow: 0 6px 30px rgba(231,111,81,0.5); }
}
.hero .btn-cta {
  box-shadow: 0 4px 16px rgba(231,111,81,0.3);
}
.hero .btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(231,111,81,0.5);
}

/* ── Hero Badge Subtle Glow ── */
.hero-badge {
  animation: fadeInRight 0.6s ease-out 0.3s both;
}

/* ── Trust Strip Items Stagger ── */
.trust-item {
  transition: transform 0.3s ease;
}
.trust-item:hover {
  transform: translateY(-2px);
}

/* ── Bundle Cards Hover Effect ── */
.bundle-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bundle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* ══════════════════════════════════════════
   CHECKOUT & CART SYSTEM — Full CSS
   ══════════════════════════════════════════ */

/* ── Bump Section ── */
.bump-section {
  margin: 40px 0;
  padding: 24px;
  border-radius: 16px;
}
.bump-header h3 { margin: 0; }
.bump-header p { margin: 0; }

/* ── Bump Cards (clickable labels) ── */
.bump-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  transform: translateZ(0);
  margin-bottom: 10px;
  background: white;
  position: relative;
}
.bump-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: var(--forest) !important;
}
.bump-card.checked {
  border-color: var(--forest) !important;
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9) !important;
  box-shadow: 0 4px 16px rgba(42,157,143,0.15);
}
.bump-card.checked::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 12px;
  background: var(--forest);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}
.bump-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--grey-200);
}
.bump-info {
  flex: 1;
  min-width: 0;
}
.bump-info strong {
  font-size: 0.85rem;
  color: var(--forest);
}
.bump-info p {
  font-size: 0.75rem;
  color: var(--grey-500);
  margin: 4px 0 0;
  line-height: 1.3;
}
.bump-price {
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}
.bump-price del {
  display: block;
  font-size: 0.75rem;
  color: var(--grey-400);
}
.bump-timer {
  font-weight: 700;
  letter-spacing: 0.03em;
  /* timerPulse removed — caused bump timer trembling */
}

/* ── Checkout Form ── */
.checkout-form {
  display: none;
  animation: fadeInUp 0.4s ease-out;
}
.checkout-form.active {
  display: block;
}
.form-section {
  margin-bottom: 30px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey-500);
}
.form-group input,
.form-group select {
  padding: 14px 16px;
  border: 1px solid var(--grey-300);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(42,157,143,0.1);
}

/* ── Cart Summary Sidebar ── */
.cart-summary {
  background: var(--sage-l);
  padding: 30px;
  border-radius: 16px;
  position: sticky;
  top: 120px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
}
.summary-row.total {
  border-top: 2px solid var(--forest);
  margin-top: 16px;
  padding-top: 16px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--forest);
  font-family: 'Playfair Display', serif;
}

/* ── Discount Row ── */
.discount-row {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}
.discount-row input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--grey-300);
  border-radius: 10px;
  font-size: 0.85rem;
  font-family: inherit;
  background: var(--sage-l);
  transition: border-color 0.2s;
}
.discount-row input:focus {
  outline: none;
  border-color: var(--forest);
}
.discount-row button {
  padding: 12px 20px;
  background: var(--forest);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.discount-row button:hover {
  background: #1f7a6d;
}

/* ── Checkout Button ── */
.checkout-btn {
  width: 100%;
  padding: 20px;
  background: var(--coral);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  transform: translateZ(0);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(231,111,81,0.3);
}
.checkout-btn:hover {
  animation: none;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(231,111,81,0.5);
  background: #d4563a;
}

/* ── Continue Shopping ── */
.continue-btn {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--grey-500);
  text-decoration: none;
  transition: color 0.2s;
}
.continue-btn:hover {
  color: var(--forest);
}

/* ── Cart Trust Badges ── */
.cart-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--grey-200);
}
.cart-trust-item {
  font-size: 0.75rem;
  color: var(--grey-500);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Cart Layout ── */
.cart-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .cart-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .cart-summary {
    position: static;
  }
}

/* ── Empty Cart ── */
.empty-cart {
  text-align: center;
  padding: 100px 20px;
}
.empty-cart h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--forest);
  margin-bottom: 16px;
}
.empty-cart p {
  font-size: 1rem;
  color: var(--grey-500);
  margin-bottom: 30px;
}

/* ── Cart Item Row ── */
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-100);
}
.cart-item img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--grey-200);
}
.cart-item-info {
  flex: 1;
}
.cart-item-info h4 {
  font-size: 0.95rem;
  color: var(--forest);
  margin: 0 0 4px;
}
.cart-item-info p {
  font-size: 0.8rem;
  color: var(--grey-500);
  margin: 0;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--grey-300);
  border-radius: 10px;
  overflow: hidden;
}
.cart-item-qty button {
  background: none;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--forest);
  transition: background 0.2s;
}
.cart-item-qty button:hover {
  background: var(--sage-l);
}
.cart-item-qty span {
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
}
.cart-item-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--forest);
  min-width: 60px;
  text-align: right;
}
.cart-item-remove {
  background: none;
  border: none;
  color: var(--grey-400);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 4px 8px;
  transition: color 0.2s;
}
.cart-item-remove:hover {
  color: var(--coral);
}

/* ── Free Shipping Progress ── */
.shipping-progress {
  margin: 20px 0;
  padding: 16px;
  background: var(--sage-l);
  border-radius: 12px;
}
.shipping-progress-bar {
  height: 6px;
  background: var(--grey-200);
  border-radius: 3px;
  overflow: hidden;
  margin: 8px 0;
}
.shipping-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  border-radius: 3px;
  transition: width 0.5s ease;
}
.shipping-progress p {
  font-size: 0.8rem;
  color: var(--grey-600);
  margin: 0;
}

/* ══════════════════════════════════════════
   MOBILE CHECKOUT & PERFORMANCE
   ══════════════════════════════════════════ */

/* ── Mobile Checkout (768px) ── */
@media (max-width: 768px) {
  .bump-section { padding: 16px; margin: 24px 0; }
  .bump-card { padding: 12px; gap: 10px; }
  .bump-img { width: 48px; height: 48px; }
  .bump-info strong { font-size: 0.8rem; }
  .bump-info p { font-size: 0.7rem; }
  .bump-price { font-size: 0.85rem; }
  .bump-price del { font-size: 0.7rem; }
  .bump-check { width: 20px !important; height: 20px !important; }
  .checkout-btn { padding: 18px; font-size: 1rem; }
  .cart-summary { padding: 20px; }
  .summary-row.total { font-size: 1.1rem; }
  .form-group input, .form-group select { padding: 12px 14px; min-height: 44px; }
  .discount-row { flex-direction: column; }
  .discount-row input { padding: 14px; }
  .discount-row button { padding: 14px; width: 100%; }
}

/* ── Small Mobile (480px) ── */
@media (max-width: 480px) {
  .bump-card { flex-wrap: wrap; }
  .bump-price { width: 100%; text-align: left; margin-top: 4px; }
  .hero-h1 { font-size: 2rem !important; }
  .hero-sub { font-size: 0.9rem !important; }
  .hero-stats { gap: 12px; }
  .hero-stat strong { font-size: 1.1rem; }
  .hero-stat span { font-size: 0.6rem; }
  .section-title h2 { font-size: 1.6rem; }
  .newsletter-box h2 { font-size: 1.3rem; }
  .bundle-card { padding: 20px; }
  .bundle-pricing { flex-direction: column; gap: 4px; }
}

/* ── Image Lazy Load & Performance ── */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}
img[loading="lazy"].loaded,
img[loading="lazy"][src] {
  opacity: 1;
}

/* ── Touch Targets (WCAG) ── */
@media (pointer: coarse) {
  .bump-card { min-height: 64px; }
  .checkout-btn { min-height: 52px; }
  .faq-q { min-height: 48px; }
  button, a.btn, .btn { min-height: 44px; }
}

/* ── Reduce Motion (a11y) ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Print ── */
/* ── Premium Checkout Optimization ── */
.checkout-steps { background: #fdfdfb; border-bottom: 1px solid var(--grey-200); padding: 15px 0; }
.steps-inner { display: flex; align-items: center; justify-content: center; gap: 20px; }
.step { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--grey-400); }
.step.active { color: var(--forest); }
.step span { width: 24px; height: 24px; border-radius: 50%; background: var(--grey-200); color: white; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }
.step.active span { background: var(--forest); }
.step-divider { width: 40px; height: 1px; background: var(--grey-200); }

.cart-timer-banner { background: #fffbeb; border-bottom: 1px solid #fef3c7; color: #92400e; padding: 10px 0; text-align: center; font-size: 0.85rem; }
#cartReservedTimer { font-weight: 800; font-variant-numeric: tabular-nums; }

.express-checkout { margin-bottom: 40px; padding: 25px; background: #fafafa; border-radius: 16px; border: 1px dashed var(--grey-300); }
.express-title { text-align: center; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey-500); margin-bottom: 20px; }
.express-btns { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.btn-express { height: 48px; border-radius: 8px; border: none; font-weight: 700; cursor: pointer; transition: transform 0.2s; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.btn-express:hover { transform: translateY(-2px); }
.apple-pay { background: #000; color: #fff; }
.google-pay { background: #fff; color: #3c4043; border: 1px solid #dadce0; }
.paypal { background: #ffc439; color: #003087; }
.express-divider { text-align: center; margin: 25px 0 10px; position: relative; }
.express-divider::before { content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: var(--grey-200); z-index: 1; }
.express-divider span { background: #fafafa; padding: 0 15px; position: relative; z-index: 2; font-size: 0.65rem; color: var(--grey-400); font-weight: 700; letter-spacing: 0.05em; }

.priority-upsell { cursor: pointer; display: block; margin-top: 20px; }
.priority-upsell input { display: none; }
.upsell-box { display: flex; align-items: center; gap: 15px; padding: 15px; background: #f0f7f4; border: 1px solid #cde4da; border-radius: 10px; transition: all 0.2s; }
.priority-upsell input:checked + .upsell-box { background: #e6f2ec; border-color: var(--forest); box-shadow: 0 4px 12px rgba(45,106,79,0.1); }
.upsell-check { width: 20px; height: 20px; border: 2px solid #aecbc0; border-radius: 4px; position: relative; flex-shrink: 0; }
.priority-upsell input:checked + .upsell-box .upsell-check { background: var(--forest); border-color: var(--forest); }
.priority-upsell input:checked + .upsell-box .upsell-check::after { content: "✓"; color: white; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; }
.upsell-info strong { display: block; font-size: 0.85rem; color: var(--forest); margin-bottom: 2px; }
.upsell-info p { font-size: 0.7rem; color: #5a7d6e; margin: 0; }

@media(max-width: 768px) {
  .express-btns { grid-template-columns: 1fr; }
  .steps-inner { gap: 10px; }
  .step-divider { width: 20px; }
  .step span { width: 20px; height: 20px; font-size: 0.65rem; }
  .step { font-size: 0.75rem; }
}

@media print {
  .announcement-bar, .site-header, .cookie-banner, .live-popup, 
  .mobile-menu, .hamburger, .checkout-steps, .cart-timer-banner { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   SLIDE-OUT CART DRAWER — High Conversion Pattern
   ═══════════════════════════════════════════════════════════════ */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 9998;
  opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed; top: 0; right: 0; width: 420px; max-width: 92vw; height: 100vh; height: 100dvh;
  background: var(--cream); z-index: 9999;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.12);
}
.cart-drawer.open { transform: translateX(0); }

.drawer-head {
  padding: 22px 25px; display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--grey-300); background: var(--forest); color: white;
}
.drawer-head h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; margin: 0; display: flex; align-items: center; gap: 10px; }
.drawer-head h3 .drawer-count { background: var(--coral); color: white; width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.7rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.drawer-close { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.2s; }
.drawer-close:hover { background: rgba(255,255,255,0.15); }

.drawer-shipping-bar { padding: 14px 25px; background: linear-gradient(135deg, #f0f7f0, #e9eeeb); border-bottom: 1px solid var(--grey-200); }
.shipping-msg { font-size: 0.8rem; color: var(--forest); font-weight: 600; margin-bottom: 8px; text-align: center; }
.shipping-msg .amount { color: var(--coral); font-weight: 800; }
.shipping-track { height: 6px; background: var(--grey-200); border-radius: 10px; overflow: hidden; }
.shipping-fill { height: 100%; background: linear-gradient(90deg, var(--forest), var(--forest-xl)); border-radius: 10px; transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1); min-width: 4%; }

.drawer-items { flex: 1; overflow-y: auto; padding: 15px 25px; }
.drawer-items::-webkit-scrollbar { width: 4px; }
.drawer-items::-webkit-scrollbar-thumb { background: var(--grey-300); border-radius: 10px; }

.drawer-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 15px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--grey-100); }
.drawer-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; background: var(--grey-100); border: 1px solid var(--grey-200); }
.drawer-item-info h4 { font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; line-height: 1.3; }
.drawer-item-info .di-cat { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey-500); margin-bottom: 6px; }
.drawer-item-qty { display: flex; align-items: center; border: 1px solid var(--grey-300); border-radius: 6px; overflow: hidden; width: fit-content; }
.drawer-item-qty button { width: 28px; height: 28px; border: none; background: var(--grey-100); cursor: pointer; font-size: 1rem; color: var(--charcoal); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.drawer-item-qty button:hover { background: var(--sage-l); }
.drawer-item-qty span { width: 32px; height: 28px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 600; background: white; }
.drawer-item-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.drawer-item-price { font-weight: 700; font-size: 0.95rem; color: var(--forest); }
.drawer-item-remove { font-size: 0.65rem; color: var(--grey-400); cursor: pointer; text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.2s; }
.drawer-item-remove:hover { color: var(--coral); }

.drawer-empty { text-align: center; padding: 60px 20px; color: var(--grey-500); }
.drawer-empty h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--charcoal); margin-bottom: 8px; }
.drawer-empty p { font-size: 0.85rem; margin-bottom: 25px; }
.drawer-empty a { display: inline-block; padding: 12px 30px; background: var(--forest); color: white; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.85rem; }

.drawer-foot { padding: 20px 25px; background: white; border-top: 1px solid var(--grey-200); }
.drawer-subtotal { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--grey-600); margin-bottom: 6px; }
.drawer-total { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 700; color: var(--charcoal); margin-bottom: 18px; padding-top: 10px; border-top: 1px solid var(--grey-200); }
.drawer-cta { display: block; width: 100%; padding: 18px; background: var(--forest); color: white; border: none; border-radius: 10px; font-size: 1rem; font-weight: 700; cursor: pointer; font-family: 'Playfair Display', serif; transition: all 0.3s; text-align: center; text-decoration: none; letter-spacing: 0.02em; }
.drawer-cta:hover { background: var(--charcoal); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.drawer-continue { display: block; width: 100%; padding: 12px; background: transparent; border: 1px solid var(--grey-300); color: var(--grey-700); border-radius: 10px; font-size: 0.85rem; font-weight: 500; cursor: pointer; margin-top: 10px; text-align: center; transition: all 0.2s; }
.drawer-continue:hover { border-color: var(--forest); color: var(--forest); }
.drawer-trust { display: flex; justify-content: center; gap: 20px; margin-top: 15px; padding-top: 12px; border-top: 1px solid var(--grey-100); }
.drawer-trust span { font-size: 0.65rem; color: var(--grey-400); text-transform: uppercase; letter-spacing: 0.04em; }

@keyframes drawerPulse { 0% { box-shadow: 0 0 0 0 rgba(26,45,36,0.3); } 50% { box-shadow: 0 0 0 8px rgba(26,45,36,0); } 100% { box-shadow: 0 0 0 0 rgba(26,45,36,0); } }
.drawer-item.just-added { animation: drawerPulse 0.6s ease-out; background: #f0f7f0; border-radius: 10px; padding: 16px 10px; }
@keyframes badgePop { 0% { transform: scale(1); } 40% { transform: scale(1.35); } 100% { transform: scale(1); } }
.cart-count.pulse { animation: badgePop 0.4s ease; }

@media (max-width: 480px) {
  .cart-drawer { width: 100vw; max-width: 100vw; }
  .drawer-item { grid-template-columns: 60px 1fr auto; gap: 10px; }
  .drawer-item img { width: 60px; height: 60px; }
}

/* ═══════════════════════════════════════════════════════════════
   CHEWY-STYLE "ADDED TO CART" MODAL
   ═══════════════════════════════════════════════════════════════ */
#addedModal { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; }
#addedModal .atc-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
  opacity: 0; transition: opacity 0.3s ease;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
#addedModal.open .atc-overlay { opacity: 1; }

.atc-modal {
  position: relative; background: white; border-radius: 20px; width: 520px; max-width: 94vw;
  max-height: 90vh; overflow-y: auto; box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  transform: scale(0.85) translateY(30px); opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  padding: 0;
}
#addedModal.open .atc-modal { transform: scale(1) translateY(0); opacity: 1; }

.atc-close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
  border-radius: 50%; background: var(--grey-100); border: none; cursor: pointer;
  font-size: 1.1rem; color: var(--grey-500); display: flex; align-items: center;
  justify-content: center; transition: all 0.2s; z-index: 2;
}
.atc-close:hover { background: var(--grey-300); color: var(--charcoal); }

.atc-top {
  display: flex; align-items: center; gap: 14px; padding: 28px 30px 0;
}
.atc-check {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; flex-shrink: 0;
  animation: checkPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes checkPop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.atc-top h3 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  color: var(--forest); margin: 0;
}

.atc-product {
  display: flex; gap: 18px; padding: 24px 30px; align-items: center;
  border-bottom: 1px solid var(--grey-100);
}
.atc-product img {
  width: 80px; height: 80px; border-radius: 14px; object-fit: cover;
  border: 1px solid var(--grey-200); background: var(--grey-100);
}
.atc-product-info { flex: 1; }
.atc-cat {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--grey-500); display: block; margin-bottom: 4px;
}
.atc-product-info h4 {
  font-family: 'Playfair Display', serif; font-size: 1.05rem;
  color: var(--charcoal); margin: 0 0 6px;
}
.atc-price { font-size: 1.1rem; font-weight: 700; color: var(--forest); }

.modal-shipping {
  padding: 12px 30px; background: var(--sage-l);
  font-size: 0.85rem; color: var(--grey-700); text-align: center;
  border-bottom: 1px solid var(--grey-100);
}
.modal-shipping.free { color: var(--forest); background: #e8f5e9; }

.atc-summary {
  display: flex; justify-content: space-between; padding: 16px 30px;
  font-size: 0.95rem; color: var(--grey-700);
  border-bottom: 1px solid var(--grey-100);
}
.atc-summary strong { color: var(--forest); font-size: 1.1rem; }

.atc-actions { padding: 20px 30px; display: flex; flex-direction: column; gap: 10px; }
.atc-btn-checkout {
  display: block; width: 100%; padding: 18px; text-align: center;
  background: linear-gradient(135deg, var(--coral) 0%, #e85d3a 100%);
  color: white; border: none; border-radius: 14px; font-size: 1.05rem;
  font-weight: 700; cursor: pointer; text-decoration: none;
  transition: all 0.3s; font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 20px rgba(231,111,81,0.3);
}
.atc-btn-checkout:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 32px rgba(231,111,81,0.5);
}
.atc-btn-continue {
  display: block; width: 100%; padding: 14px; text-align: center;
  background: transparent; border: 2px solid var(--forest); color: var(--forest);
  border-radius: 14px; font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: all 0.3s; font-family: 'Inter', sans-serif;
}
.atc-btn-continue:hover { background: var(--forest); color: white; }

.atc-suggestions {
  padding: 20px 30px 28px; background: var(--sage-l);
  border-radius: 0 0 20px 20px;
}
.atc-suggestions h5 {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  color: var(--forest); margin: 0 0 16px; text-align: center;
}
.atc-sugg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.atc-sugg-card {
  background: white; border-radius: 14px; padding: 14px; text-align: center;
  border: 1px solid var(--grey-200); cursor: pointer; transition: all 0.3s;
}
.atc-sugg-card:hover {
  transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: var(--forest);
}
.atc-sugg-card img {
  width: 60px; height: 60px; border-radius: 10px; object-fit: cover;
  margin: 0 auto 8px; display: block;
}
.atc-sugg-name {
  display: block; font-size: 0.72rem; font-weight: 600; color: var(--charcoal);
  line-height: 1.3; margin-bottom: 4px; min-height: 30px;
}
.atc-sugg-price {
  display: block; font-size: 0.8rem; font-weight: 700; color: var(--forest);
  margin-bottom: 8px;
}
.atc-sugg-btn {
  display: inline-block; padding: 6px 14px; background: var(--forest);
  color: white; border: none; border-radius: 8px; font-size: 0.72rem;
  font-weight: 700; cursor: pointer; transition: all 0.2s;
}
.atc-sugg-btn:hover { background: var(--coral); transform: scale(1.08); }

@media (max-width: 580px) {
  .atc-modal { border-radius: 16px; }
  .atc-sugg-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .atc-sugg-card { padding: 10px; }
  .atc-sugg-card img { width: 48px; height: 48px; }
  .atc-top, .atc-product, .atc-actions, .atc-suggestions { padding-left: 20px; padding-right: 20px; }
  .atc-summary { padding: 12px 20px; }
}

/* ═══ ENHANCED NEWSLETTER (Chewy-inspired dark section) ═══ */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
  color: white;
  text-align: center;
}
.newsletter-box {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 48px 40px;
}
.newsletter-box h2 { color: white; }
.newsletter-box p { color: rgba(255,255,255,0.8); }

/* ═══ ENHANCED BUTTONS ═══ */
.add-to-cart {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-l) 100%);
  color: white; padding: 12px 22px; border-radius: 10px;
  font-size: 0.82rem; font-weight: 700; transition: all 0.3s;
  position: relative; overflow: hidden; border: none; cursor: pointer;
  letter-spacing: 0.02em;
}
.add-to-cart:hover {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-d) 100%);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(231,111,81,0.4);
}
.add-to-cart:active { transform: scale(0.97); }

/* ═══ FIX: Product card visibility on load ═══ */
.product-card {
  opacity: 1 !important;
  animation: none !important;
}
.products-grid .product-card {
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}
.products-grid .product-card:nth-child(1) { animation-delay: 0.02s; }
.products-grid .product-card:nth-child(2) { animation-delay: 0.06s; }
.products-grid .product-card:nth-child(3) { animation-delay: 0.1s; }
.products-grid .product-card:nth-child(4) { animation-delay: 0.14s; }
.products-grid .product-card:nth-child(5) { animation-delay: 0.18s; }
.products-grid .product-card:nth-child(6) { animation-delay: 0.22s; }
.products-grid .product-card:nth-child(7) { animation-delay: 0.26s; }
.products-grid .product-card:nth-child(8) { animation-delay: 0.3s; }


/* ═══ PHASE 1: Shop by Pet/Need + Paw Logo ═══ */
.shop-pet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.logo-paw { color: var(--gold); }
@media(max-width:768px) {
  /* Shop by Pet responsive */
  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ═══ SHOP BY PET — Image Cards ═══ */
.pet-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.pet-card {
  display: block;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--grey-200);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-color: var(--forest);
}
.pet-card-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
}
.pet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pet-card:hover .pet-card-img img {
  transform: scale(1.08);
}
.pet-card-info {
  padding: 16px 20px 20px;
  text-align: center;
}
.pet-card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--forest);
  margin: 0 0 4px;
}
.pet-card-info p {
  font-size: 0.78rem;
  color: var(--grey-500);
  margin: 0 0 12px;
}
.pet-card-cta {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.pet-card:hover .pet-card-cta {
  color: var(--forest);
}

@media (max-width: 768px) {
  .pet-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .pet-card-info {
    padding: 12px 14px 16px;
  }
  .pet-card-info h3 {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .pet-cards-grid {
    gap: 10px;
  }
  .pet-card-img {
    aspect-ratio: 4/3;
  }
  .pet-card-info {
    padding: 10px 12px 14px;
  }
}

/* ═══ LIVE PURCHASE NOTIFICATION ═══ */
.live-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 997;
  opacity: 0;
  transform: translateX(-120%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.live-popup.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.lp-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border-radius: 14px;
  padding: 12px 16px 12px 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--grey-200);
  max-width: 380px;
  min-width: 300px;
}
.lp-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--cream);
}
.lp-body {
  flex: 1;
  min-width: 0;
}
.lp-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.3;
}
.lp-action {
  display: block;
  font-size: 0.75rem;
  color: var(--grey-600);
  line-height: 1.3;
  margin-top: 1px;
}
.lp-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  color: var(--grey-500);
  margin-top: 4px;
  font-weight: 500;
}
.lp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: lpPulse 2s ease infinite;
  flex-shrink: 0;
}
@keyframes lpPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.lp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: var(--forest);
  color: white;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}
.lp-cta:hover {
  background: var(--coral);
}

/* Mobile: bottom left, slightly smaller */
@media (max-width: 640px) {
  .live-popup {
    left: 12px;
    bottom: 16px;
    right: 12px;
  }
  .lp-card {
    max-width: 100%;
    min-width: 0;
    padding: 10px 12px;
    gap: 10px;
  }
  .lp-img {
    width: 42px;
    height: 42px;
  }
  .lp-name { font-size: 0.78rem; }
  .lp-action { font-size: 0.7rem; }
}

/* ═══ PRODUCT URGENCY TRIGGERS ═══ */
.product-urgency {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 10px;
}
.pu-fire {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.pu-fire::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  animation: lpPulse 1.5s ease infinite;
}
.pu-stock {
  font-size: 0.68rem;
  font-weight: 600;
  color: #b45309;
  background: #fef3c7;
  padding: 2px 8px;
  border-radius: 4px;
}

/* ═══ LIVE VIEWERS STRIP ═══ */
.live-viewers-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--sage-l);
  border-radius: 100px;
  margin: 0 auto 20px;
  width: fit-content;
  font-size: 0.8rem;
  color: var(--forest);
  font-weight: 500;
}
.live-viewers-strip strong {
  font-weight: 800;
  color: var(--forest);
}
.lvs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: lpPulse 2s ease infinite;
  flex-shrink: 0;
}

/* ═══ STICKY FREE GIFT BAR (shows on scroll) ═══ */
.sticky-offer-bar {
  position: fixed;
  bottom: -60px;
  left: 0;
  right: 0;
  z-index: 990;
  background: var(--forest);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sticky-offer-bar.visible {
  bottom: 0;
}
.sticky-offer-bar .sob-highlight {
  color: var(--coral);
  font-weight: 800;
}
.sticky-offer-bar .sob-cta {
  padding: 7px 18px;
  background: var(--coral);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.sticky-offer-bar .sob-cta:hover {
  background: #ff6b3d;
}

@media (max-width: 640px) {
  .sticky-offer-bar {
    font-size: 0.72rem;
    gap: 10px;
    padding: 10px 14px;
    flex-wrap: nowrap;
  }
  .sticky-offer-bar .sob-cta {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
  .product-urgency {
    flex-direction: column;
    gap: 4px;
  }
}
