/* ============================================
   PEPIN — Design System
   Palettes inspired by seasonal fruits
   Transitions inspired by transitions.dev
   ============================================ */

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

/* ---------- Design Tokens ---------- */
:root {
  /* Pastel palette — fruit-inspired */
  --c-bg: #FDFBF7;
  --c-bg-warm: #FAF4ED;
  --c-bg-mint: #F0F7F4;
  --c-surface: #FFFFFF;

  --c-text: #3A3530;
  --c-text-muted: #8A8079;
  --c-text-light: #B8AEA5;

  --c-primary: #E8A0A8;       /* strawberry blush */
  --c-primary-deep: #D87E8B;
  --c-secondary: #A8D5BA;     /* fresh mint */
  --c-accent: #F4C16B;        /* warm persimmon */
  --c-lavender: #C8B8E0;      /* grape */
  --c-peach: #F8D0C0;         /* peach */

  --c-border: #ECE5DC;
  --c-border-strong: #D9D0C5;

  /* Typography */
  --font-display: 'Fraunces', 'Pretendard', serif;
  --font-body: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', monospace;

  /* Shadows — soft, never harsh */
  --shadow-xs: 0 1px 2px rgba(58, 53, 48, 0.04);
  --shadow-sm: 0 2px 8px rgba(58, 53, 48, 0.06);
  --shadow-md: 0 6px 24px rgba(58, 53, 48, 0.08);
  --shadow-lg: 0 12px 40px rgba(58, 53, 48, 0.10);
  --shadow-glow: 0 0 40px rgba(232, 160, 168, 0.15);

  /* Radius */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-full: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --dur-fast: 180ms;
  --dur: 300ms;
  --dur-slow: 600ms;

  /* Layout */
  --container: 1200px;
  --nav-h: 72px;
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent), var(--c-secondary));
  z-index: 9999; transition: width 80ms linear;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-full);
  font-size: 0.9rem; font-weight: 600; letter-spacing: -0.01em;
  transition: all var(--dur) var(--ease-out);
  position: relative; overflow: hidden;
}
.btn--primary {
  background: var(--c-text); color: var(--c-bg);
}
.btn--primary:hover {
  background: var(--c-primary-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--primary:active { transform: translateY(0); }
.btn--primary svg { transition: transform var(--dur) var(--ease-spring); }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost {
  background: transparent; color: var(--c-text);
  border: 1.5px solid var(--c-border-strong);
}
.btn--ghost:hover {
  border-color: var(--c-text); background: var(--c-bg-warm);
}
.btn--full { width: 100%; justify-content: center; }

/* ---------- Reveal Animation System ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out),
    filter var(--dur-slow) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), backdrop-filter var(--dur);
  background: transparent;
}
.nav.is-scrolled {
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: var(--shadow-xs);
}
.nav__inner {
  max-width: var(--container); width: 100%; margin: 0 auto;
  padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
  letter-spacing: -0.02em; display: flex; align-items: center; gap: 6px;
}
.nav__logo-mark { color: var(--c-primary); font-size: 0.7em; }
.nav__links { display: flex; gap: 32px; list-style: none; }
.nav__links a {
  font-size: 0.9rem; font-weight: 500; color: var(--c-text-muted);
  transition: color var(--dur) var(--ease-out); position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--c-primary); border-radius: 2px;
  transition: width var(--dur) var(--ease-spring);
}
.nav__links a:hover { color: var(--c-text); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__cart {
  position: relative; width: 40px; height: 40px; border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text); transition: background var(--dur) var(--ease-out);
}
.nav__cart:hover { background: var(--c-bg-warm); }
.nav__cart-badge {
  position: absolute; top: 4px; right: 4px;
  background: var(--c-primary-deep); color: white;
  font-size: 0.65rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  transform: scale(0); transition: transform var(--dur) var(--ease-spring);
}
.nav__cart-badge.is-active { transform: scale(1); }

.nav__menu-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__menu-btn span {
  width: 22px; height: 2px; background: var(--c-text); border-radius: 2px;
  transition: all var(--dur) var(--ease-out);
}
.nav__menu-btn.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__menu-btn.is-open span:nth-child(2) { opacity: 0; }
.nav__menu-btn.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile-menu {
  display: none; flex-direction: column; gap: 8px;
  padding: 16px 24px; background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--c-border);
}
.nav__mobile-menu.is-open { display: flex; }
.nav__mobile-menu a { padding: 10px 0; font-weight: 500; border-bottom: 1px solid var(--c-border); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-h); position: relative; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(232, 160, 168, 0.12), transparent 50%),
    radial-gradient(ellipse at 85% 60%, rgba(168, 213, 186, 0.12), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(244, 193, 107, 0.08), transparent 50%),
    var(--c-bg);
}
.hero__content {
  max-width: var(--container); width: 100%; margin: 0 auto;
  padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero__eyebrow {
  font-size: 0.85rem; font-weight: 500; color: var(--c-primary-deep);
  letter-spacing: 0.02em; margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__title-line { display: block; overflow: hidden; }
.hero__title em { color: var(--c-primary-deep); }
.hero__sub {
  font-size: 1.05rem; color: var(--c-text-muted); line-height: 1.7;
  margin-bottom: 36px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__visual { position: relative; }
.hero__image-wrap {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3;
}
.hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero__floating-tag {
  position: absolute; background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px); border-radius: var(--r-full);
  padding: 8px 16px; font-size: 0.8rem; font-weight: 600;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 6px;
  animation: floatY 4s ease-in-out infinite;
}
.hero__floating-tag--1 { top: 24px; left: 24px; }
.hero__floating-tag--2 { bottom: 24px; right: 24px; animation-delay: 2s; }
.hero__floating-dot {
  width: 8px; height: 8px; border-radius: var(--r-full);
  background: var(--c-primary); animation: pulse 2s ease-in-out infinite;
}
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero__scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--c-text-light);
}
.hero__scroll-line {
  width: 1px; height: 32px; background: var(--c-text-light);
  animation: scrollLine 2s ease-in-out infinite; transform-origin: top;
}
@keyframes scrollLine { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; padding: 20px 0; white-space: nowrap;
  background: var(--c-text); color: var(--c-bg);
  border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.marquee__track {
  display: inline-flex; gap: 48px; animation: marquee 30s linear infinite;
}
.marquee__track span { font-size: 1rem; font-weight: 300; opacity: 0.8; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section Header ---------- */
.section__header { text-align: center; margin-bottom: 64px; }
.section__eyebrow {
  font-size: 0.8rem; font-weight: 600; color: var(--c-primary-deep);
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; line-height: 1.2; letter-spacing: -0.02em;
}

/* ---------- About ---------- */
.about__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.about__card {
  background: var(--c-surface); border-radius: var(--r-md); padding: 36px 28px;
  border: 1px solid var(--c-border);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur);
}
.about__card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--c-primary);
}
.about__icon {
  width: 48px; height: 48px; margin-bottom: 20px; color: var(--c-primary-deep);
}
.about__card h3 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 500;
  margin-bottom: 10px;
}
.about__card p { font-size: 0.9rem; color: var(--c-text-muted); line-height: 1.6; }

/* ---------- Products ---------- */
.products { background: var(--c-bg-warm); }
.products__filters {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px; border-radius: var(--r-full); font-size: 0.85rem; font-weight: 500;
  color: var(--c-text-muted); border: 1px solid var(--c-border);
  transition: all var(--dur) var(--ease-out);
}
.filter-btn:hover { border-color: var(--c-border-strong); color: var(--c-text); }
.filter-btn--active {
  background: var(--c-text); color: var(--c-bg); border-color: var(--c-text);
}

.products__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.product-card {
  background: var(--c-surface); border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--c-border);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card.is-hidden {
  display: none;
}
/* filter transition */
.product-card[data-leaving="true"] {
  opacity: 0; transform: scale(0.95); transition: all var(--dur-fast) var(--ease-in-out);
}
.product-card[data-entering="true"] {
  opacity: 0; transform: scale(0.95); animation: enterCard var(--dur) var(--ease-spring) forwards;
}
@keyframes enterCard { to { opacity: 1; transform: scale(1); } }

.product-card__image {
  position: relative; aspect-ratio: 1; overflow: hidden; background: var(--c-bg-warm);
}
.product-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.product-card:hover .product-card__image img { transform: scale(1.06); }

.product-card__wishlist {
  position: absolute; top: 12px; right: 12px; width: 36px; height: 36px;
  border-radius: var(--r-full); background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; color: var(--c-text-muted);
  transition: all var(--dur) var(--ease-spring);
}
.product-card__wishlist:hover { color: var(--c-primary-deep); transform: scale(1.1); }
.product-card__wishlist.is-active { color: var(--c-primary-deep); }
.product-card__wishlist.is-active svg { fill: var(--c-primary-deep); }

.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--c-primary); color: white;
  font-size: 0.7rem; font-weight: 600; padding: 4px 10px; border-radius: var(--r-full);
}
.product-card__badge--hot { background: var(--c-accent); }

.product-card__body { padding: 20px; }
.product-card__category { font-size: 0.75rem; color: var(--c-text-light); margin-bottom: 4px; }
.product-card__name {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; margin-bottom: 14px;
}
.product-card__bottom { display: flex; align-items: center; justify-content: space-between; }
.product-card__price { font-size: 1.05rem; font-weight: 600; }
.product-card__cart {
  width: 36px; height: 36px; border-radius: var(--r-full);
  background: var(--c-text); color: var(--c-bg);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur) var(--ease-spring);
}
.product-card__cart:hover { background: var(--c-primary-deep); transform: scale(1.08); }
.product-card__cart:active { transform: scale(0.95); }

/* ---------- Season ---------- */
.season { background: var(--c-bg-mint); }
.season__wrap {
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  padding: 80px 60px; background: linear-gradient(135deg, #F0F7F4 0%, #E8F0EB 100%);
}
.season__visual { position: relative; z-index: 1; }
.season__orb {
  position: absolute; border-radius: 50%; filter: blur(40px); opacity: 0.4;
  animation: orbFloat 8s ease-in-out infinite;
}
.season__orb--1 { width: 200px; height: 200px; background: var(--c-primary); top: -40px; right: 10%; }
.season__orb--2 { width: 160px; height: 160px; background: var(--c-accent); bottom: -20px; left: 5%; animation-delay: 3s; }
.season__orb--3 { width: 120px; height: 120px; background: var(--c-lavender); top: 40%; right: 40%; animation-delay: 5s; }
@keyframes orbFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(20px, -20px) scale(1.1); } }

.season__label { font-size: 0.85rem; font-weight: 600; color: var(--c-text-muted); margin-bottom: 12px; }
.season__title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; line-height: 1.1; margin-bottom: 20px;
}
.season__desc { font-size: 1.05rem; color: var(--c-text-muted); line-height: 1.7; margin-bottom: 28px; }
.season__fruits { display: flex; gap: 12px; flex-wrap: wrap; }
.season__fruit {
  background: var(--c-surface); padding: 8px 16px; border-radius: var(--r-full);
  font-size: 0.85rem; font-weight: 500; box-shadow: var(--shadow-xs);
  border: 1px solid var(--c-border);
}

/* ---------- Story ---------- */
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story__body p {
  font-size: 1rem; color: var(--c-text-muted); line-height: 1.8; margin-bottom: 16px;
}
.story__stats { display: flex; gap: 40px; margin-top: 36px; }
.story__stat { display: flex; flex-direction: column; gap: 4px; }
.story__stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 500;
  color: var(--c-primary-deep);
}
.story__stat-label { font-size: 0.8rem; color: var(--c-text-light); }

.story__image { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 3/4; }
.story__image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Newsletter ---------- */
.newsletter { padding: 60px 0; }
.newsletter__card {
  background: var(--c-text); color: var(--c-bg);
  border-radius: var(--r-lg); padding: 56px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.newsletter__card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(232, 160, 168, 0.15), transparent 50%);
}
.newsletter__content { position: relative; z-index: 1; }
.newsletter__content h2 {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; margin-bottom: 8px;
}
.newsletter__content p { font-size: 0.9rem; opacity: 0.7; }
.newsletter__form { position: relative; z-index: 1; display: flex; gap: 8px; }
.newsletter__input {
  flex: 1; padding: 14px 20px; border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08);
  color: var(--c-bg); font-size: 0.9rem; font-family: inherit;
  transition: border-color var(--dur), background var(--dur);
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter__input:focus { outline: none; border-color: var(--c-primary); background: rgba(255,255,255,0.12); }
.newsletter__form .btn--primary { background: var(--c-primary-deep); }
.newsletter__form .btn--primary:hover { background: var(--c-primary); }
.newsletter__success {
  display: none; position: relative; z-index: 1; grid-column: 1 / -1;
  font-size: 0.9rem; color: var(--c-secondary); padding: 12px 0;
}
.newsletter__success.is-visible { display: block; animation: revealUp var(--dur) var(--ease-spring); }
@keyframes revealUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Footer ---------- */
.footer { background: var(--c-bg-warm); padding: 64px 0 32px; border-top: 1px solid var(--c-border); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__logo {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; margin-bottom: 8px;
}
.footer__logo span { color: var(--c-primary); }
.footer__tagline { font-size: 0.85rem; color: var(--c-text-muted); }
.footer__col h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 16px; }
.footer__col a {
  display: block; font-size: 0.85rem; color: var(--c-text-muted);
  padding: 4px 0; transition: color var(--dur);
}
.footer__col a:hover { color: var(--c-text); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--c-border);
  font-size: 0.8rem; color: var(--c-text-light);
}
.footer__socials { display: flex; gap: 16px; }
.footer__socials a { transition: color var(--dur); }
.footer__socials a:hover { color: var(--c-text); }

/* ---------- Cart Drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(58, 53, 48, 0.4);
  backdrop-filter: blur(4px); z-index: 2000; opacity: 0; pointer-events: none;
  transition: opacity var(--dur) var(--ease-out);
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 400px; max-width: 100vw;
  background: var(--c-bg); z-index: 2001;
  transform: translateX(100%); transition: transform var(--dur) var(--ease-out);
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--c-border);
}
.cart-drawer__header h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; }
.cart-drawer__close {
  width: 36px; height: 36px; border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center; color: var(--c-text-muted);
  transition: background var(--dur);
}
.cart-drawer__close:hover { background: var(--c-bg-warm); }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-drawer__empty { text-align: center; color: var(--c-text-light); padding: 60px 0; }
.cart-item {
  display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--c-border);
  animation: cartItemIn var(--dur) var(--ease-spring);
}
@keyframes cartItemIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.cart-item__name { font-weight: 500; font-size: 0.9rem; }
.cart-item__price { font-size: 0.85rem; color: var(--c-text-muted); margin-top: 4px; }
.cart-item__remove {
  font-size: 0.75rem; color: var(--c-text-light); margin-top: 8px;
  transition: color var(--dur);
}
.cart-item__remove:hover { color: var(--c-primary-deep); }
.cart-drawer__footer { padding: 20px 24px; border-top: 1px solid var(--c-border); }
.cart-drawer__total {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px;
}
.cart-drawer__total span:first-child { font-size: 0.9rem; color: var(--c-text-muted); }
.cart-drawer__total span:last-child { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--c-text); color: var(--c-bg);
  padding: 12px 24px; border-radius: var(--r-full); font-size: 0.85rem; font-weight: 500;
  box-shadow: var(--shadow-lg); z-index: 3000; opacity: 0;
  transition: all var(--dur) var(--ease-spring);
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: flex; }

  .hero__content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__cta { justify-content: center; }
  .hero__scroll-hint { display: none; }

  .about__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .story__grid { grid-template-columns: 1fr; gap: 40px; }
  .story__stats { justify-content: center; }
  .newsletter__card { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
  .newsletter__form { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .season__wrap { padding: 48px 28px; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .products__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.5rem; }
  .cart-drawer { width: 100vw; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
}
