/* ============================================
   BAY DIAPER — STYLES
   Palette: Warm Peach & Cream
   Fonts: Bricolage Grotesque + Plus Jakarta Sans
   ============================================ */

:root {
  --cream:       #FFF8F0;
  --peach-light: #FDEEE3;
  --peach:       #FFD6B8;
  --peach-mid:   #F4B896;
  --peach-deep:  #F4956A;
  --orange:      #E8733A;
  --brown-dark:  #3D2B1F;
  --brown-mid:   #6B4C3B;
  --brown-light: #A07060;
  --white:       #FFFFFF;
  --text:        #2C1A10;
  --text-muted:  #7A5C4E;
  --border:      #F0DDD0;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --shadow-sm:  0 2px 12px rgba(61,43,31,0.08);
  --shadow-md:  0 8px 32px rgba(61,43,31,0.12);
  --shadow-lg:  0 20px 60px rgba(61,43,31,0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--peach-deep);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,149,106,0.4);
}
.btn-primary.btn-large { padding: 16px 36px; font-size: 1.05rem; }
.btn-primary.btn-full { width: 100%; text-align: center; padding: 16px; font-size: 1rem; }

.btn-ghost {
  background: transparent;
  color: var(--brown-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--peach);
  transition: var(--transition);
}
.btn-ghost:hover {
  background: var(--peach-light);
  border-color: var(--peach-deep);
}
.btn-ghost.btn-large { padding: 14px 34px; font-size: 1.05rem; }

.btn-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown-dark);
  transition: var(--transition);
  position: relative;
}
.btn-icon:hover { background: var(--peach-light); }

.btn-add {
  background: var(--brown-dark);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-add:hover {
  background: var(--peach-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(244,149,106,0.35);
}
.btn-add.added {
  background: #4CAF50;
}

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,248,240,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brown-dark);
  flex-shrink: 0;
}
.nav__logo strong { color: var(--peach-deep); }
.logo-icon { font-size: 1.5rem; }

.nav__links {
  display: flex; gap: 8px;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--brown-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__links a:hover { color: var(--peach-deep); background: var(--peach-light); }

.nav__actions {
  display: flex; align-items: center; gap: 8px;
}
.cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--peach-deep);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.cart-count.visible { opacity: 1; }

.nav__hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.nav__mobile a {
  font-weight: 500;
  color: var(--brown-mid);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__mobile a:hover { color: var(--peach-deep); background: var(--peach-light); }
.nav__mobile.open { display: flex; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  background: linear-gradient(135deg, #FFF0E4 0%, #FFE4CC 40%, #FFD6B8 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}
.hero__blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #FFD6B8, transparent);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero__blob--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #F4956A44, transparent);
  bottom: 100px; left: -80px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
.hero__blob--3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, #FDEEE3, transparent);
  top: 50%; left: 40%;
  animation: blobFloat 12s ease-in-out infinite;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero__content {
  flex: 1;
  max-width: 580px;
  padding: 80px 24px 80px 48px;
  position: relative; z-index: 2;
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white);
  color: var(--brown-mid);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--brown-dark);
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero__title em {
  font-style: normal;
  color: var(--peach-deep);
  position: relative;
}
.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 6px;
  background: var(--peach);
  border-radius: 3px;
  z-index: -1;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--brown-mid);
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero__ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.4s ease both;
}

.hero__trust {
  display: flex; gap: 20px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.5s ease both;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown-mid);
}
.trust-icon { font-size: 1rem; }

.hero__visual {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 48px 80px 24px;
  position: relative; z-index: 2;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero__img-wrap {
  position: relative;
  width: 420px; max-width: 100%;
}
.hero__img {
  width: 100%;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.hero__float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brown-dark);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.hero__float--1 { top: 10%; left: -30px; animation: floatBob 4s ease-in-out infinite; }
.hero__float--2 { top: 50%; right: -20px; animation: floatBob 4s 1.5s ease-in-out infinite; }
.hero__float--3 { bottom: 15%; left: -20px; animation: floatBob 4s 0.8s ease-in-out infinite; }
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
}
.hero__wave svg { width: 100%; height: 80px; display: block; }

/* ---- MARQUEE ---- */
.marquee-strip {
  background: var(--brown-dark);
  color: var(--peach);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 48px;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: var(--peach-light);
  color: var(--peach-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--brown-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ---- PRODUCTS ---- */
.products {
  padding: 100px 0;
  background: var(--cream);
}

.filter-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-tab {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
  color: var(--brown-mid);
  background: var(--white);
  transition: var(--transition);
}
.filter-tab:hover { border-color: var(--peach-deep); color: var(--peach-deep); }
.filter-tab.active {
  background: var(--peach-deep);
  border-color: var(--peach-deep);
  color: var(--white);
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card.hidden { display: none; }

.product-card__badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--peach-deep);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
}
.product-card__badge--new { background: #5B8DEF; }
.product-card__badge--eco { background: #4CAF50; }

.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--peach-light);
}
.product-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__img-wrap img {
  transform: scale(1.06);
}
.product-card__wishlist {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  color: var(--brown-light);
}
.product-card__wishlist:hover { color: #E8405A; transform: scale(1.1); }
.product-card__wishlist.active { color: #E8405A; }

.product-card__body { padding: 20px; }
.product-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--peach-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 8px;
}
.product-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}
.product-card__stars {
  font-size: 0.85rem;
  color: #F4956A;
  margin-bottom: 16px;
}
.product-card__stars span { color: var(--text-muted); }
.product-card__footer {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brown-dark);
}
.price-old {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--brown-light);
  text-decoration: line-through;
  margin-left: 4px;
}

/* ---- WHY BAY ---- */
.why {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.why__bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #FFF0E4 0%, #FFE4CC 60%, #FFD6B8 100%);
  z-index: 0;
}
.why .container { position: relative; z-index: 1; }

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--peach);
}
.why__card--featured {
  background: var(--brown-dark);
  color: var(--white);
  border-color: var(--brown-dark);
}
.why__card--featured h3 { color: var(--peach); }
.why__card--featured p { color: rgba(255,255,255,0.75); }

.why__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.why__card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.why__card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- SUBSCRIBE BANNER ---- */
.subscribe-banner {
  background: var(--peach-deep);
  padding: 64px 0;
}
.subscribe-banner__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.subscribe-banner__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.subscribe-banner__text p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}
.subscribe-banner__form {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.subscribe-input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 20px;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  outline: none;
  min-width: 260px;
  transition: var(--transition);
}
.subscribe-input::placeholder { color: rgba(255,255,255,0.65); }
.subscribe-input:focus { border-color: var(--white); background: rgba(255,255,255,0.25); }
.subscribe-banner .btn-primary {
  background: var(--white);
  color: var(--peach-deep);
}
.subscribe-banner .btn-primary:hover {
  background: var(--cream);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ---- REVIEWS ---- */
.reviews {
  padding: 100px 0;
  background: var(--cream);
}
.reviews__overall {
  display: flex; align-items: center; gap: 12px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}
.reviews__stars { color: #F4956A; font-size: 1.3rem; }
.reviews__score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brown-dark);
}
.reviews__count { color: var(--text-muted); font-size: 0.9rem; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-card--featured {
  background: linear-gradient(135deg, var(--brown-dark), #5C3D2E);
  border-color: var(--brown-dark);
  color: var(--white);
}
.review-card--featured .review-card__stars { color: var(--peach); }
.review-card--featured .review-card__text { color: rgba(255,255,255,0.85); }
.review-card--featured strong { color: var(--peach); }
.review-card--featured span { color: rgba(255,255,255,0.6); }

.review-card__stars { color: #F4956A; font-size: 1rem; margin-bottom: 16px; }
.review-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}
.review-card__author {
  display: flex; align-items: center; gap: 12px;
}
.review-card__author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.review-card__author strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brown-dark);
}
.review-card__author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- FAQ ---- */
.faq {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--peach-light) 100%);
}
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq__item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.faq__item.open { border-color: var(--peach); box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--brown-dark);
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
.faq__q:hover { color: var(--peach-deep); }
.faq__arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--peach-deep);
}
.faq__item.open .faq__arrow { transform: rotate(180deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq__a p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq__item.open .faq__a { max-height: 200px; }

/* ---- FOOTER ---- */
.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  margin-bottom: 56px;
}
.footer__logo { color: var(--white); margin-bottom: 16px; }
.footer__logo strong { color: var(--peach); }
.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer__socials {
  display: flex; gap: 12px;
}
.footer__socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer__socials a:hover {
  background: var(--peach-deep);
  border-color: var(--peach-deep);
  color: var(--white);
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: var(--transition);
}
.footer__col a:hover { color: var(--peach); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer__bottom p { font-size: 0.85rem; }
.footer__legal {
  display: flex; gap: 24px;
}
.footer__legal a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer__legal a:hover { color: var(--peach); }

/* ---- CART DRAWER ---- */
.cart-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(61,43,31,0.4);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
  width: 400px; max-width: 100vw;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer__header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown-dark);
}
.cart-drawer__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--peach-light);
  color: var(--brown-dark);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cart-drawer__close:hover { background: var(--peach); }

.cart-drawer__body {
  flex: 1; overflow-y: auto;
  padding: 24px;
}
.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px;
  height: 100%;
  text-align: center;
}
.cart-empty span { font-size: 3rem; }
.cart-empty p { color: var(--text-muted); font-size: 1rem; }

.cart-item {
  display: flex; gap: 16px; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item__img {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  background: var(--peach-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.cart-item__info { flex: 1; }
.cart-item__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown-dark);
  margin-bottom: 4px;
}
.cart-item__price { font-size: 0.9rem; color: var(--peach-deep); font-weight: 600; }
.cart-item__qty {
  display: flex; align-items: center; gap: 8px;
  margin-top: 8px;
}
.cart-item__qty button {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--peach-light);
  color: var(--brown-dark);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cart-item__qty button:hover { background: var(--peach); }
.cart-item__qty span { font-weight: 600; font-size: 0.9rem; min-width: 20px; text-align: center; }
.cart-item__remove {
  color: var(--brown-light);
  font-size: 1.1rem;
  transition: var(--transition);
  padding: 4px;
}
.cart-item__remove:hover { color: #E8405A; }

.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--brown-mid);
}
.cart-total strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brown-dark);
}
.cart-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ---- TOAST ---- */
.toast {
  position: fixed; bottom: 32px; left: 50%; z-index: 300;
  transform: translateX(-50%) translateY(100px);
  background: var(--brown-dark);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 24px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__actions .btn-primary { display: none; }
  .nav__hamburger { display: flex; }
  .nav__actions { gap: 4px; }

  .hero {
    flex-direction: column;
    padding-top: 72px;
    text-align: center;
  }
  .hero__content {
    padding: 60px 24px 20px;
    max-width: 100%;
  }
  .hero__ctas { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__visual { padding: 20px 24px 80px; }
  .hero__img-wrap { width: 300px; }
  .hero__float--1 { left: -10px; }
  .hero__float--2 { right: -10px; }
  .hero__float--3 { left: -10px; }

  .why__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

  .subscribe-banner__inner { flex-direction: column; text-align: center; }
  .subscribe-banner__form { justify-content: center; }
  .subscribe-input { min-width: 100%; }

  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.4rem; }
  .section-title { font-size: 1.8rem; }
  .footer__links { grid-template-columns: 1fr; }
  .filter-tabs { gap: 6px; }
  .filter-tab { font-size: 0.82rem; padding: 8px 14px; }
}