/* ============================================================
   VERDLING BABY — Global Stylesheet
   Aesthetic: "Enchanted Forest Nursery"
   Warm organic warmth + playful illustration energy
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

/* ---- Variables ---- */
:root {
  --cream:           #F5F0E6;
  --cream-dark:      #EDE6D6;
  --sage:            #4E7C32;
  --sage-mid:        #6A9E4A;
  --sage-light:      #A8C97D;
  --sage-pale:       #D6E9C0;
  --forest:          #2A4018;
  --terracotta:      #C06B3E;
  --terracotta-light:#E8A070;
  --terracotta-pale: #F5D9C4;
  --amber:           #D4A53A;
  --text:            #2A3520;
  --text-mid:        #4A5C3A;
  --text-light:      #7A8A6A;
  --white:           #FDFAF3;
  --shadow-sm:       0 2px 8px rgba(42,64,24,.08);
  --shadow-md:       0 6px 24px rgba(42,64,24,.12);
  --shadow-lg:       0 16px 48px rgba(42,64,24,.15);
  --radius-sm:       8px;
  --radius-md:       16px;
  --radius-lg:       28px;
  --radius-xl:       48px;
  --font-display:    'Fraunces', Georgia, serif;
  --font-body:       'Plus Jakarta Sans', sans-serif;
  --transition:      0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s ease;
}

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

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

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

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--forest);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; font-weight: 600; font-family: var(--font-body); }

.display-italic { font-style: italic; color: var(--sage); }
.cat-hero .display-italic { color: rgba(255,255,255,.88); }
.blog-hero .display-italic { color: var(--sage); }

p { color: var(--text-mid); font-size: 1rem; line-height: 1.75; }

/* ---- Utility ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide { max-width: 1400px; }
.container--narrow { max-width: 760px; }

.section { padding: 80px 0; }
.section--lg { padding: 120px 0; }

.text-center { text-align: center; }
.text-sage { color: var(--sage); }
.text-terracotta { color: var(--terracotta); }

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--sage-pale);
  color: var(--sage);
  margin-bottom: 16px;
}

.tag--amber {
  background: #FFF0CC;
  color: var(--amber);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn--primary:hover { background: #AE5A30; color: var(--white); }

.btn--secondary {
  background: var(--sage);
  color: var(--white);
}
.btn--secondary:hover { background: var(--forest); color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--sage);
  border: 2px solid var(--sage);
}
.btn--ghost:hover { background: var(--sage); color: var(--white); }

.btn--white {
  background: var(--white);
  color: var(--forest);
}
.btn--white:hover { background: var(--cream); color: var(--forest); }

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 16px 0;
}

.nav.scrolled {
  background: rgba(245, 240, 230, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(42,64,24,.1);
  padding: 10px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
  flex-shrink: 0;
}

.nav__logo-frog {
  width: 36px;
  height: 36px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 100px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav__links a:hover {
  background: var(--sage-pale);
  color: var(--sage);
}

.nav__cta { font-size: 0.875rem !important; padding: 10px 20px !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---- Blog Hero ---- */
.blog-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, #EBF3DF 50%, var(--cream) 100%);
  padding: 140px 0 60px;
}
.blog-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/photos/photo-1667659917540-579dca1e45f4.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.11;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 90%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 90%);
}
.blog-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
  z-index: 1;
  pointer-events: none;
}
.blog-hero .container { position: relative; z-index: 2; }
.blog-hero .breadcrumb { display:flex; align-items:center; gap:8px; font-size:.8rem; color:var(--text-light); margin-bottom:20px; }
.blog-hero .breadcrumb a { color:var(--text-light); transition:color .2s; }
.blog-hero .breadcrumb a:hover { color:var(--forest); }
.blog-hero__meta { display:flex; align-items:center; gap:16px; margin-bottom:20px; flex-wrap:wrap; }
.blog-hero__category { background:var(--sage-pale); color:var(--sage); font-size:.75rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:4px 12px; border-radius:100px; }
.blog-hero__date { font-size:.8rem; color:var(--text-light); }
.blog-hero h1 { max-width:760px; margin-bottom:20px; color: var(--forest); }
.blog-hero__intro { font-size:1.15rem; color:var(--text-mid); max-width:660px; line-height:1.7; }

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, #EBF3DF 50%, var(--cream) 100%);
  padding-top: 80px;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/photos/photo-1667659917540-579dca1e45f4.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.11;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 90%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 90%);
}

.hero__bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}

.hero__bg-blob--1 {
  width: 600px; height: 600px;
  background: var(--sage-light);
  top: -100px; right: -150px;
}

.hero__bg-blob--2 {
  width: 400px; height: 400px;
  background: var(--terracotta-pale);
  bottom: -50px; left: -100px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.hero__text { max-width: 560px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--sage-light);
  border-radius: 2px;
}

.hero__headline {
  margin-bottom: 24px;
}

.hero__subhead {
  font-size: 1.125rem;
  color: var(--text-mid);
  margin-bottom: 40px;
  max-width: 460px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--cream-dark);
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
}

.hero__trust-item svg { color: var(--sage); }

/* Hero Illustration */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__blob-bg {
  position: absolute;
  width: 520px; height: 520px;
  background: radial-gradient(ellipse, var(--sage-pale) 0%, transparent 70%);
  border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
  animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {
  0%,100% { border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%; }
  25%     { border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%; }
  50%     { border-radius: 55% 45% 35% 65% / 45% 60% 40% 55%; }
  75%     { border-radius: 48% 52% 55% 45% / 62% 38% 58% 42%; }
}

.hero__mascot {
  position: relative;
  z-index: 2;
  width: 380px;
  height: 380px;
  object-fit: contain;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 24px 48px rgba(42,64,24,.18));
}

@keyframes float {
  0%,100% { transform: translateY(0px) rotate(-1deg); }
  50%      { transform: translateY(-16px) rotate(1deg); }
}

.hero__badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest);
  z-index: 3;
  animation: float 5s ease-in-out infinite;
}

.hero__badge--1 {
  top: 15%; right: 0%;
  animation-delay: -1.5s;
}

.hero__badge--2 {
  bottom: 20%; left: 0%;
  animation-delay: -3s;
}

.hero__badge-icon {
  width: 32px; height: 32px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ---- Why Organic Section ---- */
.why {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(60% 100% at 50% 0%);
}

.why::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.why__inner { padding: 120px 0; }

.why .tag { background: rgba(168,201,125,0.2); color: var(--sage-light); }
.why h2 { color: var(--white); }
.why p { color: rgba(253,250,243,.65); }

.why__header {
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: background var(--transition-fast), transform var(--transition);
}

.why__card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
}

.why__card-icon {
  width: 56px; height: 56px;
  background: rgba(168,201,125,.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.why__card h3 { color: var(--white); margin-bottom: 10px; font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; }
.why__card p { font-size: 0.9rem; }

/* ---- Category Section ---- */
.categories__header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 56px;
}

.categories__header p { margin-top: 12px; }

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  display: block;
  transition: transform var(--transition), box-shadow var(--transition-fast);
}

.category-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-lg); }

.category-card__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
  filter: saturate(0.5);
}

.category-card:hover .category-card__bg { transform: scale(1.06); }

.category-card__overlay {
  position: absolute;
  inset: 0;
  /* default fallback — overridden per category below */
  background: linear-gradient(to top, rgba(26,42,14,0.95) 0%, rgba(26,42,14,0.86) 60%, rgba(26,42,14,0.75) 100%);
  filter: saturate(0.5);
}

/* Per-category overlay tints */
.category-card--cotton  .category-card__overlay { background: linear-gradient(to top, rgba(115,155,97,0.95) 0%, rgba(115,155,97,0.86) 60%, rgba(115,155,97,0.75) 100%); }
.category-card--bedding .category-card__overlay { background: linear-gradient(to top, rgba(100,137,190,0.95) 0%, rgba(100,137,190,0.86) 60%, rgba(100,137,190,0.75) 100%); }
.category-card--skincare .category-card__overlay { background: linear-gradient(to top, rgba(190,132,145,0.95) 0%, rgba(190,132,145,0.86) 60%, rgba(190,132,145,0.75) 100%); }
.category-card--toys    .category-card__overlay { background: linear-gradient(to top, rgba(195,165,82,0.95)  0%, rgba(195,165,82,0.86)  60%, rgba(195,165,82,0.75)  100%); }
.category-card--feeding .category-card__overlay { background: linear-gradient(to top, rgba(192,127,95,0.95) 0%, rgba(192,127,95,0.86) 60%, rgba(192,127,95,0.75) 100%); }
.category-card--nursery .category-card__overlay { background: linear-gradient(to top, rgba(168,152,120,0.97) 0%, rgba(168,152,120,0.88) 60%, rgba(168,152,120,0.72) 100%); }

.category-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
}

.category-card__content h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.category-card__content p {
  color: rgba(253,250,243,.75);
  font-size: 0.8rem;
  margin-bottom: 0;
}

.category-card__arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--transition-fast), transform var(--transition);
}

.category-card:hover .category-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Category card photo backgrounds */
.category-card--cotton .category-card__bg  {
  background-image: url('../images/photos/photo-1703282581360-a3685b2d52ac.jpg');
  background-size: cover; background-position: center;
}
.category-card--bedding .category-card__bg  {
  background-image: url('../images/photos/nursery-crib-overhead.jpg');
  background-size: cover; background-position: center;
}
.category-card--skincare .category-card__bg {
  background-image: url('../images/photos/photo-1630305130592-210da48f151e.jpg');
  background-size: cover; background-position: center;
}
.category-card--toys .category-card__bg     {
  background-image: url('../images/photos/toys-blocks.jpg');
  background-size: cover; background-position: center;
}
.category-card--feeding .category-card__bg  {
  background-image: url('../images/photos/photo-1542386247-eb6355c537c1.jpg');
  background-size: cover; background-position: center;
}
.category-card--nursery .category-card__bg  {
  background-image: url('../images/photos/photo-1649889385821-19ad2b3b37d3.jpg');
  background-size: cover; background-position: center;
}

/* ---- Featured Products ---- */
.products { background: linear-gradient(to bottom, var(--cream) 0%, var(--white) 18%); }

.products__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.products__header > div p { margin-top: 8px; }

.products__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--cream-dark);
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--white);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Product Card */
.product-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-card__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img { transform: scale(1.06); }

.product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--sage);
  color: var(--white);
}

.product-card__badge--pick {
  background: var(--terracotta);
}

.product-card__wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform var(--transition);
}

.product-card__wishlist:hover { transform: scale(1.2); }

.product-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card__desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.5;
  flex: 1;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-card__price {
  font-weight: 700;
  color: var(--forest);
  font-size: 1rem;
}

.product-card__stars {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.75rem;
}

.star { color: var(--amber); }
.star-count { color: var(--text-light); font-size: 0.7rem; margin-left: 3px; }

.product-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 11px;
  border-radius: var(--radius-sm);
  background: var(--forest);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition);
  text-decoration: none;
}

.product-card__btn:hover {
  background: var(--sage);
  color: var(--white);
  transform: scale(1.02);
}

/* ---- Verdling's Picks Banner ---- */
.picks {
  background: linear-gradient(135deg, var(--sage) 0%, var(--forest) 100%);
  position: relative;
  overflow: hidden;
}

.picks__deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: white;
  pointer-events: none;
}

.picks__deco--1 { width: 400px; height: 400px; top: -150px; right: -100px; }
.picks__deco--2 { width: 250px; height: 250px; bottom: -80px; left: 100px; }

.picks__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.picks .tag { background: rgba(255,255,255,.15); color: var(--white); }
.picks h2 { color: var(--white); }
.picks p { color: rgba(253,250,243,.75); margin-bottom: 24px; }

.picks__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.picks__list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  transition: background var(--transition-fast), transform var(--transition);
  cursor: pointer;
}

.picks__list-item:hover {
  background: rgba(255,255,255,.14);
  transform: translateX(4px);
}

.picks__item-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.picks__item-text { flex: 1; }

.picks__item-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}

.picks__item-meta {
  font-size: 0.75rem;
  color: rgba(253,250,243,.6);
  margin-top: 2px;
}

.picks__item-arrow {
  color: rgba(253,250,243,.4);
  font-size: 0.8rem;
  transition: transform var(--transition);
}

.picks__list-item:hover .picks__item-arrow { transform: translateX(4px); color: var(--sage-light); }

/* ---- Trust / Certifications ---- */
.trust {
  background: var(--cream-dark);
}

.trust__inner {
  text-align: center;
}

.trust__header { margin-bottom: 48px; }
.trust__header h2 { margin-bottom: 12px; }

.trust__certs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust__cert {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition-fast);
}

.trust__cert:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.trust__cert-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.trust__cert h3 { margin-bottom: 8px; color: var(--forest); font-size: 1rem; }
.trust__cert p { font-size: 0.82rem; }

/* ---- Search Input ---- */
.search-bar {
  position: relative;
  max-width: 320px;
}

.search-bar__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 10px 16px 10px 40px;
  border-radius: 100px;
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition-fast);
}

.search-bar__input:focus { border-color: var(--sage); }
.search-bar__input::placeholder { color: var(--text-light); }

.search-bar__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}

/* ---- Pagination ---- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.page-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.page-btn:hover { border-color: var(--sage); color: var(--sage); }
.page-btn.active { background: var(--sage); border-color: var(--sage); color: var(--white); }

/* Prev/Next buttons are wider */
.page-btn[data-page]:first-child,
.page-btn[data-page]:last-child {
  width: auto;
  padding: 0 16px;
  border-radius: 100px;
}

/* ---- Newsletter Section ---- */
.newsletter {
  background: linear-gradient(to bottom, var(--cream-dark) 0%, var(--cream) 20%);
  text-align: center;
}

.newsletter__box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 64px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.newsletter__box::before {
  content: '🌿';
  position: absolute;
  font-size: 8rem;
  opacity: 0.04;
  top: -10px; right: -20px;
  transform: rotate(20deg);
}

.newsletter__box .tag { margin-bottom: 20px; }
.newsletter__box h2 { margin-bottom: 12px; }
.newsletter__box p { margin-bottom: 32px; }

.newsletter__form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 14px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--cream-dark);
  background: var(--cream);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter__input:focus { border-color: var(--sage); }
.newsletter__input::placeholder { color: var(--text-light); }

/* ---- Footer ---- */
.footer {
  background: var(--forest);
  padding: 64px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand {}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.875rem;
  color: rgba(253,250,243,.55);
  max-width: 280px;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer__social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(253,250,243,.6);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.footer__social-link:hover { background: var(--sage-mid); color: var(--white); }

.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-links a {
  font-size: 0.86rem;
  color: rgba(253,250,243,.5);
  transition: color var(--transition-fast);
}

.footer__col-links a:hover { color: var(--sage-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(253,250,243,.35);
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(253,250,243,.25);
  max-width: 500px;
  text-align: right;
}

/* ---- Scroll animations ---- */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Only hide elements when JS has confirmed animation support */
.js-animate .reveal {
  opacity: 0;
  transform: translateY(16px);
}

.js-animate .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Mobile Nav ---- */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 99;
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav__mobile.open { transform: translateX(0); }

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--forest);
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
  display: block;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}

.nav__mobile.open a {
  opacity: 1;
  transform: translateX(0);
}

.nav__mobile.open a:nth-child(1) { transition-delay: 0.1s; }
.nav__mobile.open a:nth-child(2) { transition-delay: 0.15s; }
.nav__mobile.open a:nth-child(3) { transition-delay: 0.2s; }
.nav__mobile.open a:nth-child(4) { transition-delay: 0.25s; }
.nav__mobile.open a:nth-child(5) { transition-delay: 0.3s; }

.nav__mobile a:hover { color: var(--sage); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .products__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .trust__certs { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 0 60px;
  }

  .hero__visual { display: none; }

  .hero__text { max-width: 100%; }
  .hero__eyebrow { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }

  .why__grid { grid-template-columns: 1fr; }
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .picks__inner { grid-template-columns: 1fr; gap: 40px; }
  .trust__certs { grid-template-columns: 1fr 1fr; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }

  .newsletter__form { flex-direction: column; }
  .newsletter__box { padding: 40px 24px; }

  .products__header { flex-direction: column; align-items: flex-start; }

  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  .categories__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr; }
  .trust__certs { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__disclaimer { text-align: left; }
}

/* ── Accessibility: prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal.visible { opacity: 1; transform: none; }
  .hero__bg-blob { animation: none; }
}

/* ── Screen-reader only utility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Normalise h3 used as footer__col-title ── */
h3.footer__col-title { margin: 0 0 16px; }
