/* Blent Coffee — site styles (composes with DS tokens/styles) */

html { scroll-behavior: smooth; }
body { margin: 0; background: var(--blent-paper); font-family: var(--font-sans); color: var(--blent-ink); }
button { font-family: var(--font-sans); cursor: pointer; }
* { box-sizing: border-box; }

/* ---------- reveal-on-scroll ---------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity 0.65s var(--ease-out, ease-out), transform 0.65s var(--ease-out, ease-out); }
.rv.rv-in { opacity: 1; transform: none; }
body.no-anim .rv, body.no-anim .rv.rv-in { opacity: 1; transform: none; transition: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
}

/* ---------- ticker ---------- */
.ticker { background: var(--blent-ink); color: var(--blent-paper); overflow: hidden; height: 34px; display: flex; align-items: center; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker-scroll 42s linear infinite; }
.ticker-item { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; display: inline-flex; align-items: center; }
.ticker-dot { margin: 0 22px; color: var(--blent-coral); }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
body.no-anim .ticker-track { animation: none; }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(246, 243, 238, 0.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--blent-mist);
}
.header-inner { max-width: 1200px; margin: 0 auto; padding: 14px 40px; display: flex; align-items: center; gap: 32px; }
.header-logo { flex: 0 0 auto; }
.header-nav { display: flex; gap: 26px; flex: 1; }
.header-nav a { text-decoration: none; color: var(--blent-ink); font-weight: 700; font-size: 14.5px; transition: color 0.2s; }
.header-nav a:hover { color: var(--blent-coral-deep); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; border: 1.5px solid var(--blent-ink); border-radius: 999px; overflow: hidden; }
.lang-switch button { border: none; background: transparent; padding: 5px 11px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: var(--blent-ink); }
.lang-switch button.on { background: var(--blent-ink); color: var(--blent-paper); }
.cart-btn { position: relative; border: none; background: var(--blent-ink); color: var(--blent-paper); width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.cart-btn:hover { background: #000; }
.menu-btn { display: none; border: none; background: transparent; color: var(--blent-ink); width: 42px; height: 42px; border-radius: 50%; align-items: center; justify-content: center; }
.menu-btn:hover { background: var(--blent-cloud); }
.mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--blent-paper); border-bottom: 1px solid var(--blent-mist); box-shadow: var(--shadow-lg); padding: 6px 24px 18px; flex-direction: column; z-index: 39; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 4px; font-size: 19px; font-weight: 900; color: var(--blent-ink); text-decoration: none; border-bottom: 1px solid var(--blent-mist); }
.mobile-menu a:last-child { border-bottom: none; }
@media (min-width: 981px) { .mobile-menu { display: none !important; } }
.cart-badge {
  position: absolute; top: -5px; right: -5px; min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--blent-coral); color: var(--blent-ink); font-size: 11.5px; font-weight: 900;
  border-radius: 999px; display: flex; align-items: center; justify-content: center;
  animation: badge-pop 0.35s var(--ease-out, ease-out);
}
@keyframes badge-pop { 0% { transform: scale(0.4); } 70% { transform: scale(1.15); } 100% { transform: scale(1); } }

/* ---------- shared section chrome ---------- */
.section-head { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-title { font-size: clamp(32px, 4.5vw, 48px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.05; margin: 10px 0 0; }
.section-sub { font-size: 17px; line-height: 1.65; color: var(--blent-ink-soft); max-width: 560px; margin: 16px 0 0; }
.blent-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blent-coral-deep); }

.btn-primary {
  border: none; background: var(--blent-coral); color: var(--blent-ink);
  font-weight: 900; font-size: 15.5px; padding: 14px 26px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; width: 100%;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--blent-coral-deep); }
.btn-primary:active { transform: translateY(1px); }
.icon-x { border: none; background: transparent; color: var(--blent-ink); padding: 6px; border-radius: 50%; display: flex; }
.icon-x:hover { background: var(--blent-cloud); }
.link-btn { border: none; background: none; color: var(--blent-coral-deep); font-weight: 700; font-size: 15px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--blent-white); }
.hero-pattern {
  position: absolute; inset: 0; left: auto; width: 44%;
  background-size: 240px; background-repeat: repeat; opacity: 0.9;
  animation: pattern-drift 60s linear infinite;
}
@keyframes pattern-drift { from { background-position: 0 0; } to { background-position: -240px 240px; } }
body.no-anim .hero-pattern { animation: none; }
@media (prefers-reduced-motion: reduce) { .hero-pattern { animation: none; } }
.hero-fade { position: absolute; top: 0; bottom: 0; left: 42%; width: 16%; background: linear-gradient(90deg, var(--blent-white), rgba(255, 255, 255, 0)); }
.hero-inner {
  position: relative; max-width: 1200px; margin: 0 auto; padding: 92px 40px 104px;
}
.hero-inner > div { max-width: 560px; }
.hero-wordmark { height: 74px; display: block; margin: 0 0 20px; animation: wordmark-in 0.9s var(--ease-out, ease-out) both; }
@keyframes wordmark-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.hero-title { font-size: clamp(44px, 6vw, 72px); font-weight: 900; line-height: 0.98; letter-spacing: -0.03em; margin: 0; }
.hero-line { display: block; overflow: hidden; }
.hero-line > span { display: block; animation: line-rise 0.8s var(--ease-out, ease-out) both; }
@keyframes line-rise { from { transform: translateY(110%); } to { transform: translateY(0); } }
body.no-anim .hero-wordmark, body.no-anim .hero-line > span { animation: none; }
@media (prefers-reduced-motion: reduce) { .hero-wordmark, .hero-line > span { animation: none; } }
.hero-sub { font-size: 19px; line-height: 1.6; color: var(--blent-ink-soft); max-width: 460px; margin: 22px 0 0; }
.hero-ctas { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* ---------- story ---------- */
.story { position: relative; background: var(--blent-ink); color: var(--blent-paper); overflow: hidden; }
.story-inner { position: relative; max-width: 1200px; margin: 0 auto; padding: 96px 40px; }
.story-title { font-size: clamp(34px, 4.5vw, 52px); font-weight: 900; letter-spacing: -0.02em; margin: 10px 0 0; }
.story-intro { font-size: 19px; line-height: 1.65; color: var(--blent-stone); max-width: 540px; margin: 18px 0 0; }
.story-intro em { font-style: normal; color: var(--blent-paper); }
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); gap: 30px; margin-top: 64px; }
.tl-item { position: relative; padding-top: 26px; border-top: 1px solid rgba(246, 243, 238, 0.25); }
.tl-dot { position: absolute; top: -7px; left: 0; width: 14px; height: 14px; border-radius: 50%; }
.tl-year { font-size: 20px; font-weight: 900; letter-spacing: -0.01em; }
.tl-body { font-size: 14.5px; line-height: 1.6; color: var(--blent-stone); margin: 10px 0 0; }
.story-credit { display: flex; align-items: center; gap: 18px; margin-top: 64px; flex-wrap: wrap; }
.story-credit-line { font-size: 13px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blent-stone); }
.story-credit-x { font-size: 22px; color: var(--blent-coral); font-weight: 900; }

/* ---------- ranges ---------- */
.ranges { padding: 96px 0; }
.ranges-grid { max-width: 1200px; margin: 44px auto 0; padding: 0 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.range-card {
  text-align: left; border: 1px solid var(--blent-mist); background: var(--blent-white);
  border-radius: 20px; overflow: hidden; padding: 0; display: flex; flex-direction: column;
  transition: transform 0.2s var(--ease-out, ease-out), box-shadow 0.2s;
}
.range-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.range-pattern { height: 150px; background-size: 220px; background-repeat: repeat; transition: background-position 6s linear; }
.range-card:hover .range-pattern { background-position: 60px 40px; }
.range-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 8px; }
.range-name-row { display: flex; align-items: center; gap: 10px; }
.range-body h3 { font-size: 24px; font-weight: 900; margin: 0; }
.range-badge { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.acc-coral .range-badge, .range-badge.acc-coral { background: var(--blent-coral-tint); color: var(--blent-coral-deep); }
.range-badge.acc-mint { background: var(--blent-mint-tint); color: var(--blent-mint-deep); }
.range-badge.acc-sun { background: var(--blent-sun-tint); color: var(--blent-sun-deep); }
.range-body p { font-size: 15px; line-height: 1.6; color: var(--blent-ink-soft); margin: 0; flex: 1; }
.range-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--blent-coral-deep); margin-top: 6px; }

/* ---------- shop ---------- */
.shop { padding: 20px 0 96px; }
.promise {
  max-width: 1200px; margin: 40px auto 0; padding: 20px 28px;
  display: flex; align-items: center; gap: 16px;
  background: var(--blent-sun-tint); border: 1px solid var(--blent-sun); border-radius: 18px;
}
@media (min-width: 981px) { .promise { margin-left: auto; margin-right: auto; width: calc(100% - 80px); } }
.promise strong { display: block; font-size: 16.5px; font-weight: 900; }
.promise span { font-size: 14.5px; color: var(--blent-ink-soft); }
.shop-grid { max-width: 1200px; margin: 28px auto 0; padding: 0 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.shop-grid-extras { grid-template-columns: repeat(3, 1fr); max-width: 1200px; }
.extras-choc { width: 44px; height: 44px; border-radius: 10px; background-size: 200px; border: 1px solid var(--blent-mist); background-color: var(--blent-white); }
.shop-card {
  background: var(--blent-white); border: 1px solid var(--blent-mist); border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.2s var(--ease-out, ease-out), box-shadow 0.2s;
}
.shop-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.shop-card-visual { position: relative; height: 140px; }
.shop-card-pattern { position: absolute; inset: 0; background-size: 200px; background-repeat: repeat; }
.shop-badge { position: absolute; top: 12px; right: 12px; background: var(--blent-white); }
.shop-card-extras { position: absolute; inset: 0; background: var(--blent-cloud); display: flex; align-items: center; justify-content: center; gap: 10px; }
.extras-stack { display: flex; gap: 8px; transform: rotate(-6deg); }
.extras-stick { width: 26px; height: 92px; border-radius: 999px; background-size: 200px; border: 1px solid var(--blent-mist); background-color: var(--blent-white); }
.extras-count { font-size: 20px; font-weight: 900; color: var(--blent-ink); background: var(--blent-white); border: 1.5px solid var(--blent-ink); padding: 6px 14px; border-radius: 999px; }
.shop-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.shop-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.shop-card-head h3 { font-size: 22px; font-weight: 900; margin: 0; }
.shop-price { font-size: 19px; font-weight: 900; color: var(--blent-coral-deep); }
.shop-tag { font-size: 14.5px; line-height: 1.55; color: var(--blent-ink-soft); margin: 0; }
.shop-origins { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.shop-origins li { font-size: 12.5px; font-weight: 700; background: var(--blent-cloud); padding: 4px 10px; border-radius: 999px; }
.shop-options { display: flex; flex-direction: column; gap: 10px; margin-top: 2px; flex: 1; justify-content: flex-end; }
.opt-group { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.opt-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blent-graphite); }
.seg { display: flex; border: 1.5px solid var(--blent-ink); border-radius: 999px; overflow: hidden; }
.seg button { border: none; background: transparent; padding: 6px 14px; font-size: 13px; font-weight: 700; color: var(--blent-ink); transition: background 0.15s; }
.seg button.on { background: var(--blent-ink); color: var(--blent-paper); }

/* ---------- recipes ---------- */
.recipes { padding: 96px 0; background: var(--blent-white); border-top: 1px solid var(--blent-mist); }
.recipes-grid { max-width: 1200px; margin: 44px auto 0; padding: 0 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.recipe-card { background: var(--blent-paper); border: 1px solid var(--blent-mist); border-radius: 20px; padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.recipe-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.recipe-nr { font-size: 30px; font-weight: 900; color: var(--blent-coral); letter-spacing: -0.02em; }
.recipe-card h3 { font-size: 21px; font-weight: 900; margin: 0; }
.recipe-ratio { font-size: 13px; font-weight: 700; background: var(--blent-white); border: 1px solid var(--blent-mist); border-radius: 999px; padding: 6px 12px; width: fit-content; }
.recipe-steps { margin: 4px 0 0; padding-left: 18px; display: flex; flex-direction: column; gap: 7px; }
.recipe-steps li { font-size: 13.5px; line-height: 1.5; color: var(--blent-ink-soft); }

/* ---------- visit ---------- */
.visit { padding: 96px 0; background: var(--blent-white); border-top: 1px solid var(--blent-mist); }
.visit-grid { max-width: 1200px; margin: 44px auto 0; padding: 0 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.visit-card {
  position: relative; background: var(--blent-paper); border: 1px solid var(--blent-mist); border-radius: 20px;
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
}
.visit-nr { position: absolute; top: 20px; right: 24px; font-size: 42px; font-weight: 900; color: var(--blent-coral); letter-spacing: -0.03em; }
.visit-logo { align-self: flex-start; max-width: 210px; object-fit: contain; object-position: left; }
.visit-card p { font-size: 14.5px; line-height: 1.6; color: var(--blent-ink-soft); margin: 0; }
.visit-hours-block { display: flex; flex-direction: column; gap: 3px; }
.visit-h { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blent-graphite); margin-bottom: 3px; }
.visit-hours-line { font-size: 13.5px; font-weight: 500; }
.visit-contact { display: flex; flex-direction: column; gap: 8px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--blent-mist); }
.visit-contact a { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 700; color: var(--blent-ink); text-decoration: none; }
.visit-contact a:hover { color: var(--blent-coral-deep); }

/* ---------- instagram ---------- */
.insta { padding: 88px 0; text-align: center; }
.insta-head { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--blent-ink); }
.insta-handle { font-size: 24px; font-weight: 900; }
.insta-tag { font-size: 14px; font-weight: 700; color: var(--blent-coral-deep); background: var(--blent-coral-tint); padding: 5px 12px; border-radius: 999px; }
.insta-sub { font-size: 15px; color: var(--blent-graphite); margin: 10px 0 0; }
.insta-row { max-width: 1000px; margin: 32px auto 0; padding: 0 40px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.insta-tile { aspect-ratio: 1; border-radius: 16px; overflow: hidden; border: 1px solid var(--blent-mist); display: block; transition: transform 0.2s var(--ease-out, ease-out); }
.insta-tile:hover { transform: translateY(-3px); }
.insta-tile-bg { width: 100%; height: 100%; background-size: 180px; background-repeat: repeat; }
.insta-logo-tile { width: 100%; height: 100%; background: var(--blent-white); display: flex; align-items: center; justify-content: center; }
.insta-logo-tile img { width: 70%; display: block; }

/* ---------- footer ---------- */
.footer { background: var(--blent-ink); color: var(--blent-paper); }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 72px 40px 48px;
  display: grid; grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr 1fr; gap: 40px;
}
.footer-brand p { font-size: 15px; line-height: 1.6; color: var(--blent-stone); margin: 16px 0 0; max-width: 260px; }
.footer-caps { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; color: var(--blent-coral); margin-top: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer-h { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blent-stone); margin-bottom: 6px; }
.footer-col a { color: var(--blent-paper); text-decoration: none; }
.footer-col a:hover { color: var(--blent-coral); }
.footer-col span { color: var(--blent-stone); line-height: 1.6; }
.footer-sisters { display: flex; gap: 10px; }
.sister-chip { background: var(--blent-paper); border-radius: 12px; padding: 8px 12px; display: flex; align-items: center; }
.sister-chip img { height: 22px; display: block; }
.footer-legal { border-top: 1px solid rgba(246, 243, 238, 0.18); padding: 20px 40px 26px; text-align: center; font-size: 12.5px; color: var(--blent-stone); }

/* ---------- toast ---------- */
#cart-toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 80px);
  background: var(--blent-ink); color: #fff; padding: 13px 22px; border-radius: 999px;
  font-family: var(--font-sans); font-weight: 700; font-size: 14px; box-shadow: var(--shadow-lg);
  opacity: 0; transition: transform 0.2s var(--ease-out, ease-out), opacity 0.2s var(--ease-out, ease-out);
  z-index: 100; display: flex; align-items: center; gap: 10px;
}
#cart-toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ---------- cart drawer ---------- */
.drawer-wrap { position: fixed; inset: 0; z-index: 60; pointer-events: none; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(32, 32, 32, 0.35); opacity: 0; transition: opacity 0.25s; }
.drawer {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(420px, 100vw);
  background: var(--blent-paper); box-shadow: var(--shadow-lg);
  transform: translateX(105%); transition: transform 0.3s var(--ease-out, ease-out);
  display: flex; flex-direction: column;
}
.drawer-wrap.open { pointer-events: auto; }
.drawer-wrap.open .drawer-scrim { opacity: 1; }
.drawer-wrap.open .drawer { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px 16px; border-bottom: 1px solid var(--blent-mist); }
.drawer-head h3 { margin: 0; font-size: 21px; font-weight: 900; }
.drawer-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 24px; }
.drawer-empty-pattern { width: 120px; height: 120px; border-radius: 50%; background: url(../assets/pattern-authentic-tile.png); background-size: 180px; border: 1px solid var(--blent-mist); }
.drawer-empty p { font-size: 15.5px; color: var(--blent-graphite); margin: 8px 0 0; }
.drawer-items { flex: 1; overflow-y: auto; padding: 12px 24px; display: flex; flex-direction: column; }
.drawer-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--blent-mist); align-items: flex-start; }
.drawer-thumb {
  width: 58px; height: 58px; border-radius: 14px; background-size: 130px; background-color: var(--blent-cloud);
  border: 1px solid var(--blent-mist); flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900;
}
.drawer-item-info { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.drawer-item-name { font-size: 14.5px; font-weight: 700; line-height: 1.35; }
.drawer-item-price { font-size: 13px; color: var(--blent-graphite); }
.qty { display: inline-flex; align-items: center; gap: 2px; border: 1.5px solid var(--blent-ink); border-radius: 999px; width: fit-content; }
.qty button { border: none; background: transparent; width: 28px; height: 26px; font-size: 15px; font-weight: 700; color: var(--blent-ink); }
.qty span { min-width: 22px; text-align: center; font-size: 13.5px; font-weight: 700; }
.drawer-item-total { font-size: 15px; font-weight: 900; }
.drawer-foot { padding: 18px 24px 24px; border-top: 1px solid var(--blent-mist); display: flex; flex-direction: column; gap: 12px; }
.milestones { display: flex; flex-direction: column; gap: 6px; padding-bottom: 16px; }
.ms-line { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--blent-ink-soft); }
.ms-line.ok { color: var(--color-success); font-weight: 700; }
.ms-bar { position: relative; height: 8px; border-radius: 999px; background: var(--blent-cloud); margin-top: 8px; }
.ms-fill { height: 100%; border-radius: 999px; background: var(--blent-coral); transition: width 0.35s var(--ease-out, ease-out); }
.ms-mark { position: absolute; top: 50%; transform: translate(-50%, -50%); width: 14px; height: 14px; border-radius: 50%; background: var(--blent-white); border: 2px solid var(--blent-mist); }
.ms-mark.hit { border-color: var(--blent-coral-deep); background: var(--blent-coral); }
.ms-mark span { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); font-size: 10.5px; font-weight: 700; color: var(--blent-graphite); white-space: nowrap; }
.ms-mark-end span { transform: translateX(-80%); }
.drawer-gift { background: var(--blent-sun-tint); border-radius: 14px; padding: 12px; border-bottom: none; margin-top: 10px; align-items: center; }
.gift-thumb { background: var(--blent-white); color: var(--blent-coral-deep); }
.gift-total, .co-line-gift span:last-child { color: var(--color-success) !important; font-weight: 900; }
.co-line-gift span:first-child { display: inline-flex; align-items: center; gap: 7px; }
.drawer-subtotal { display: flex; justify-content: space-between; font-size: 17px; }
.drawer-subtotal strong { font-weight: 900; }
.drawer-note { font-size: 12.5px; color: var(--blent-graphite); }

/* ---------- checkout ---------- */
.co-wrap { position: fixed; inset: 0; z-index: 70; background: var(--blent-paper); overflow-y: auto; }
.co-head {
  position: sticky; top: 0; z-index: 5; background: rgba(246, 243, 238, 0.92); backdrop-filter: blur(8px);
  display: flex; align-items: center; gap: 16px; padding: 16px 32px; border-bottom: 1px solid var(--blent-mist);
}
.co-head-title { flex: 1; font-size: 17px; font-weight: 900; }
.co-body {
  max-width: 1060px; margin: 0 auto; padding: 40px 32px 80px;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start;
}
.co-h { font-size: 19px; font-weight: 900; margin: 0 0 14px; }
.co-form .co-h { margin-top: 34px; }
.co-form .co-h:first-child { margin-top: 0; }
.co-delivery { display: flex; flex-direction: column; gap: 10px; }
.co-del-opt {
  display: flex; align-items: center; gap: 14px; text-align: left;
  background: var(--blent-white); border: 1.5px solid var(--blent-mist); border-radius: 16px; padding: 14px 18px;
  transition: border-color 0.15s;
}
.co-del-opt.on { border-color: var(--blent-ink); }
.co-del-opt .mollie-radio { flex: 0 0 auto; }
.co-del-main { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.co-del-main strong { font-size: 15px; font-weight: 700; }
.co-del-main em { font-style: normal; font-size: 12.5px; color: var(--blent-graphite); }
.co-del-price { font-size: 14.5px; font-weight: 900; }
.co-fields { display: flex; flex-wrap: wrap; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; flex: 1 1 100%; }
.field.half { flex: 1 1 calc(50% - 6px); }
.field span { font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; color: var(--blent-graphite); }
.field input {
  border: 1.5px solid var(--blent-mist); border-radius: 12px; background: var(--blent-white);
  padding: 12px 14px; font-family: var(--font-sans); font-size: 15px; color: var(--blent-ink); outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus { border-color: var(--blent-coral); box-shadow: var(--shadow-focus, 0 0 0 3px var(--blent-coral-tint)); }
.field.invalid input { border-color: var(--color-danger); }
.co-invoice { display: flex; align-items: center; gap: 10px; margin-top: 20px; font-size: 15px; font-weight: 700; cursor: pointer; }
.co-invoice input { width: 18px; height: 18px; accent-color: var(--blent-coral-deep); }
.co-invoice-fields { margin-top: 14px; }
.co-invoice-note { flex: 1 1 100%; font-size: 13px; line-height: 1.55; color: var(--blent-graphite); background: var(--blent-cloud); border-radius: 12px; padding: 12px 14px; }
.co-error { margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--color-danger); }
.co-summary { background: var(--blent-white); border: 1px solid var(--blent-mist); border-radius: 20px; padding: 26px; position: sticky; top: 90px; }
.co-line { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; padding: 7px 0; color: var(--blent-ink-soft); }
.co-line span:last-child { font-weight: 700; color: var(--blent-ink); white-space: nowrap; }
.co-total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1.5px solid var(--blent-ink); margin-top: 12px; padding: 14px 0 18px; font-size: 17px; }
.co-total em { font-style: normal; font-size: 12px; color: var(--blent-graphite); }
.co-total strong { font-size: 22px; font-weight: 900; }
.co-pay-note { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 12.5px; color: var(--blent-graphite); margin-top: 12px; }
.co-methods-row { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 10px; }
.co-method-chip { font-size: 11px; font-weight: 700; color: var(--blent-graphite); border: 1px solid var(--blent-mist); border-radius: 999px; padding: 3px 9px; }

/* ---------- mollie sim ---------- */
.mollie-wrap { position: fixed; inset: 0; z-index: 80; background: #f2f3f5; display: flex; align-items: flex-start; justify-content: center; overflow-y: auto; padding: 48px 20px; }
.mollie-card {
  width: 100%; max-width: 440px; background: #fff; border-radius: 14px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.09); padding: 30px 30px 22px;
  font-family: -apple-system, "Segoe UI", system-ui, sans-serif; color: #1c1c1c;
}
.mollie-merchant { display: flex; align-items: center; gap: 14px; padding-bottom: 20px; border-bottom: 1px solid #ececec; }
.mollie-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--blent-ink); color: var(--blent-paper);
  display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; font-family: var(--font-sans);
}
.mollie-merchant strong { display: block; font-size: 16px; }
.mollie-merchant span { font-size: 12.5px; color: #8a8a8a; }
.mollie-amount { margin-left: auto; font-size: 20px; font-weight: 700; }
.mollie-choose { font-size: 13px; font-weight: 600; color: #8a8a8a; margin: 18px 0 10px; }
.mollie-methods { display: flex; flex-direction: column; gap: 8px; }
.mollie-method {
  display: flex; align-items: center; gap: 12px; background: #fff; border: 1.5px solid #e4e4e4;
  border-radius: 10px; padding: 12px 14px; font-size: 14.5px; transition: border-color 0.15s;
}
.mollie-method.on { border-color: #1c1c1c; }
.mollie-mark { width: 34px; height: 24px; border-radius: 5px; color: #fff; font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.mollie-method-label { flex: 1; text-align: left; font-weight: 600; }
.mollie-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #c9c9c9; position: relative; }
.mollie-method.on .mollie-radio, .co-del-opt.on .mollie-radio { border-color: #1c1c1c; }
.mollie-method.on .mollie-radio::after, .co-del-opt.on .mollie-radio::after {
  content: ""; position: absolute; inset: 3px; border-radius: 50%; background: #1c1c1c;
}
.co-del-opt .mollie-radio { border-color: var(--blent-mist); }
.co-del-opt.on .mollie-radio { border-color: var(--blent-ink); }
.co-del-opt.on .mollie-radio::after { background: var(--blent-ink); }
.mollie-pay {
  width: 100%; margin-top: 18px; border: none; background: #1c1c1c; color: #fff;
  font-size: 15.5px; font-weight: 700; padding: 14px; border-radius: 10px; transition: background 0.15s;
}
.mollie-pay:hover { background: #000; }
.mollie-cancel { width: 100%; margin-top: 8px; border: none; background: none; color: #8a8a8a; font-size: 13.5px; padding: 8px; }
.mollie-note { text-align: center; font-size: 11.5px; color: #b0b0b0; margin-top: 14px; }
.mollie-brand { text-align: center; font-size: 15px; font-weight: 800; color: #1c1c1c; margin-top: 10px; letter-spacing: -0.02em; }
.mollie-processing { display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 40px 0; }
.mollie-processing p { font-size: 14.5px; color: #6a6a6a; margin: 0; }
.mollie-spinner { width: 36px; height: 36px; border-radius: 50%; border: 3.5px solid #ececec; border-top-color: #1c1c1c; animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- confirmation ---------- */
.co-done { max-width: 520px; margin: 0 auto; padding: 100px 32px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.co-done-check {
  width: 84px; height: 84px; border-radius: 50%; background: var(--blent-coral); color: var(--blent-ink);
  display: flex; align-items: center; justify-content: center; animation: badge-pop 0.5s var(--ease-out, ease-out);
}
.co-done h2 { font-size: 36px; font-weight: 900; margin: 10px 0 0; letter-spacing: -0.02em; }
.co-done-nr { font-size: 15px; font-weight: 700; background: var(--blent-cloud); border-radius: 999px; padding: 7px 16px; }
.co-done p { font-size: 16px; line-height: 1.65; color: var(--blent-ink-soft); margin: 4px 0 0; }
.co-done-invoice { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.co-done-mail { font-size: 14px !important; color: var(--blent-graphite) !important; }
.co-done .btn-primary { width: auto; margin-top: 18px; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { padding: 56px 24px 64px; }
  .hero-pattern { width: 100%; opacity: 0.25; }
  .hero-fade { display: none; }
  .timeline { grid-template-columns: 1fr; gap: 28px; }
  .ranges-grid, .shop-grid, .shop-grid-extras, .visit-grid { grid-template-columns: 1fr; }
  .recipes-grid { grid-template-columns: 1fr 1fr; padding: 0 24px; }
  .insta-row { grid-template-columns: repeat(3, 1fr); }
  .insta-row .insta-tile:nth-child(n+4) { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 48px 24px 36px; }
  .co-body { grid-template-columns: 1fr; padding: 28px 20px 60px; gap: 32px; }
  .co-summary { position: static; }
  .section-head, .ranges-grid, .shop-grid, .visit-grid { padding-left: 24px; padding-right: 24px; }
  .promise { margin-left: 24px; margin-right: 24px; }
  .header-inner { padding: 12px 20px; gap: 12px; }
  .header-nav { display: none; }
  .menu-btn { display: flex; }
  .header-logo { flex: 1; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 40px; }
  .hero-wordmark { height: 56px; }
  .footer-inner { grid-template-columns: 1fr; }
  .field.half { flex: 1 1 100%; }
  .recipes-grid { grid-template-columns: 1fr; }
}
