/* ==========================================================================
   Eva Bakes — design tokens (from BrandBook Blue.png)
   ========================================================================== */
:root {
  --navy: #0A0AA3;
  --navy-dark: #070763;
  --periwinkle: #4B50D5;
  --lilac: #A7B2F4;
  --cream: #FBF7F0;
  --tan: #EADBC6;
  --ink: #1B1B3A;
  --white: #FFFFFF;

  --font-head: 'Baloo 2', ui-rounded, 'Segoe UI', sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-card: 0 10px 30px -12px rgba(10, 10, 163, 0.18);
  --shadow-panel: 0 20px 60px -16px rgba(10, 10, 163, 0.35);

  --header-h: 76px;
  --promo-h: 44px;
  --mobile-bar-h: 64px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; color: var(--navy); }
p { margin: 0 0 1em; line-height: 1.6; }
p:last-child { margin-bottom: 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track, .reviews__track { animation: none !important; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-dark); }
.btn-primary:active { transform: scale(0.97); }
.btn-large { padding: 15px 30px; font-size: 1.05rem; }
.btn-whatsapp { width: 100%; background: var(--navy); }
.btn-whatsapp:hover { background: var(--navy-dark); }

/* ==========================================================================
   Promo bar
   ========================================================================== */
.promo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--promo-h);
  background: var(--navy);
  color: var(--white);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  position: relative;
  z-index: 60;
}
.promo-bar:hover { background: var(--navy-dark); }
.promo-bar strong { font-weight: 700; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid rgba(10, 10, 163, 0.08);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-link img { width: 44px; height: auto; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  font-size: 0.85rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.main-nav { flex: 1; min-width: 0; }
.main-nav ul {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover { color: var(--navy); border-color: var(--lilac); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cart-toggle {
  position: relative;
  background: none;
  border: none;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.cart-toggle:hover { background: var(--tan); }
.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--periwinkle);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 84vw);
  background: var(--white);
  z-index: 90;
  padding: calc(var(--header-h) + 24px) 24px 24px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: var(--shadow-panel);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 12px 4px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  border-bottom: 1px solid var(--tan);
}
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 163, 0.35);
  z-index: 85;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.mobile-nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .btn-order-now { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding: 56px 24px 40px; }
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  font-weight: 700;
  color: var(--periwinkle);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.hero-heading-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 18px;
}
.hero-line-love {
  position: relative;
  display: inline-block;
}
.hero-decoration {
  position: absolute;
  pointer-events: none;
}
.hero-decoration-lines {
  top: -4px;
  left: -18px;
  width: 24px;
  height: 30px;
}
.hero-decoration-heart {
  right: -46px;
  bottom: -6px;
  width: 46px;
  height: 40px;
}
.hero-decoration-dots {
  right: -18px;
  bottom: -22px;
  width: 26px;
  height: 18px;
}

@media (max-width: 900px) {
  .hero-decoration-lines { top: -3px; left: -14px; width: 18px; height: 22px; }
  .hero-decoration-heart { right: -34px; bottom: -4px; width: 36px; height: 32px; }
  .hero-decoration-dots { right: -12px; bottom: -16px; width: 20px; height: 14px; }
}
@media (max-width: 480px) {
  .hero-decoration-lines { top: -2px; left: -10px; width: 14px; height: 18px; }
  .hero-decoration-heart { right: -26px; bottom: -2px; width: 28px; height: 24px; }
  .hero-decoration-dots { display: none; }
}
.hero-sub {
  font-size: 1.05rem;
  max-width: 46ch;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-media { position: relative; }
.hero-media picture,
.hero-media img { border-radius: var(--radius-lg); width: 100%; height: auto; }
.hero-badge {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 110px;
  filter: drop-shadow(0 8px 18px rgba(10,10,163,0.25));
}
.hero-badge img { border-radius: 50%; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-badge { width: 88px; top: -12px; right: 4px; }
}

/* ==========================================================================
   Marquee ribbon
   ========================================================================== */
.marquee {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 14px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding-right: 2.5em;
  white-space: nowrap;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Sections (shared)
   ========================================================================== */
.section { padding: 72px 24px; }
.section--tinted { background: var(--tan); }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 6px;
}
.section-sub { color: var(--periwinkle); font-weight: 600; margin-bottom: 32px; }

/* ==========================================================================
   Product grids & cards
   ========================================================================== */
.product-grid--cookies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-grid--cakes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .product-grid--cookies { grid-template-columns: repeat(2, 1fr); }
  .product-grid--cakes { grid-template-columns: 1fr; }
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -14px rgba(10,10,163,0.28); }
.section--tinted .product-card { background: var(--cream); }

.product-media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--tan);
  margin-bottom: 14px;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media--wide { aspect-ratio: 3 / 2; }

.product-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  line-height: 1.2;
}
.product-desc {
  font-size: 0.88rem;
  color: #4b4b6b;
  margin-bottom: 14px;
  flex-grow: 1;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
}

.qty-control { display: flex; align-items: center; }
.btn-add {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-add:hover { background: var(--navy); color: var(--white); }

.stepper {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 6px 8px;
}
.stepper button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.stepper button:hover { background: rgba(255,255,255,0.32); }
.stepper .qty { font-family: var(--font-head); font-weight: 700; min-width: 1.2em; text-align: center; }

@media (max-width: 560px) {
  .product-grid--cookies { grid-template-columns: 1fr 1fr; gap: 12px; }

  .product-card {
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    padding: 12px;
  }
  .product-card h3 { font-size: 0.92rem; }
  .product-desc { font-size: 0.78rem; margin-bottom: 10px; }

  /* Row 1: controls (Add button or stepper) · Row 2: price, left-aligned below */
  .product-footer {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
  }

  .qty-control {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .price { font-size: 0.92rem; }

  .btn-add {
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    padding: 9px 16px;
    font-size: 0.8rem;
  }
  .btn-add__extra { display: none; }

  .stepper {
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
    flex-shrink: 1;
    gap: 8px;
    padding: 6px 8px;
  }
  .stepper button {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
    flex-shrink: 0;
  }
  .stepper .qty {
    min-width: 1em;
    flex-shrink: 0;
  }
}

/* ==========================================================================
   Sweet Gifts
   ========================================================================== */
.sweet-gifts__card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}
.sweet-gifts__card .section-title { color: var(--white); }
.sweet-gifts__heading { font-size: 1.4rem; color: var(--lilac); margin-bottom: 12px; }
.sweet-gifts__copy p { color: rgba(255,255,255,0.85); max-width: 55ch; margin-bottom: 24px; }
.sweet-gifts__card .btn-primary { background: var(--white); color: var(--navy); }
.sweet-gifts__card .btn-primary:hover { background: var(--lilac); }
.sweet-gifts__media img {
  width: 560px;
  max-width: 44vw;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
}

@media (max-width: 780px) {
  .sweet-gifts__card { grid-template-columns: 1fr; padding: 32px 24px; text-align: left; }
  .sweet-gifts__media { display: none; }
}

/* ==========================================================================
   My Story
   ========================================================================== */
.my-story__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.my-story__media-wrap {
  position: relative;
}
.my-story__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1883 / 1520;
}
.my-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.my-story__accent {
  position: absolute;
  right: -20px;
  bottom: -28px;
  width: 42%;
  max-width: 190px;
  aspect-ratio: 1280 / 960;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-panel);
  transform: rotate(4deg);
}
.my-story__accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.my-story__heading { font-size: 1.6rem; margin-bottom: 16px; }
.my-story__copy p { color: #3b3b5c; }
.my-story__closing { font-weight: 700; color: var(--navy); font-style: italic; }

@media (max-width: 900px) {
  .my-story__grid { grid-template-columns: 1fr; }
  .my-story__media-wrap { margin-bottom: 40px; }
  .my-story__accent { right: 12px; bottom: -24px; width: 38%; }
}

/* ==========================================================================
   Delivery & Payment
   ========================================================================== */
.delivery__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.delivery__info p { color: #3b3b5c; }
.delivery__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1400 / 792;
}
.delivery__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.delivery__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 99, 0.85) 0%, rgba(7, 7, 99, 0.35) 40%, rgba(7, 7, 99, 0) 65%);
  pointer-events: none;
}
.delivery__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 1;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.delivery__caption-icon { font-size: 1.3rem; line-height: 1; }
.delivery__caption-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  line-height: 1.2;
}
.delivery__caption-text span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
}
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.payment-icon {
  width: 60px;
  height: 38px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(10, 10, 163, 0.1);
  box-shadow: 0 2px 8px -2px rgba(10, 10, 163, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.15s ease;
}
.payment-icon:hover { transform: translateY(-2px); }
.payment-icon svg { width: 100%; height: 100%; display: block; }
.payment-icon--dark { background: #000000; border-color: #000000; }
.payment-icon--mbway {
  background: linear-gradient(135deg, #ff4f7b, #e4003a);
  border-color: transparent;
}

@media (max-width: 900px) {
  .delivery__grid { grid-template-columns: 1fr; }
  .delivery__media { order: -1; }
}

/* ==========================================================================
   Reviews marquee
   ========================================================================== */
.reviews { padding-bottom: 56px; }
.reviews__marquee {
  overflow: hidden;
  padding: 4px 0 12px;
}
.reviews__track {
  display: flex;
  width: max-content;
  animation: reviews-scroll 40s linear infinite;
}
.reviews__marquee:hover .reviews__track,
.reviews__marquee:focus-within .reviews__track { animation-play-state: paused; }
.review-card {
  margin: 0 20px 0 0;
  width: 220px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 9 / 15.5;
  background: var(--tan);
}
.review-card img { width: 100%; height: 100%; object-fit: cover; }
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.footer__illustration {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  mix-blend-mode: luminosity;
}
.footer__illustration img { width: 100%; height: 100%; object-fit: cover; }
.footer__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 32px;
  align-items: start;
}
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__brand img { filter: brightness(0) invert(1); }
.footer__brand p { color: rgba(255,255,255,0.75); margin: 0; }
.footer__col h4 {
  color: var(--lilac);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a:hover { color: var(--lilac); }
.footer__contacts li { color: rgba(255,255,255,0.85); }
.footer__cta { align-self: center; }

.footer__bottom {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 18px 24px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__cta { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; padding-bottom: calc(var(--mobile-bar-h) + 32px); }
}

/* ==========================================================================
   Cart panel (desktop: pinned right / slide-in overlay)
   ========================================================================== */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 163, 0.3);
  z-index: 95;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.cart-backdrop.is-open { opacity: 1; pointer-events: auto; }

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(400px, 92vw);
  background: var(--white);
  z-index: 96;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: var(--shadow-panel);
}
.cart-panel.is-open { transform: translateX(0); }

.cart-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.cart-panel__header h2 { font-size: 1.4rem; }
.cart-close {
  background: var(--tan);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.cart-panel__summary { color: var(--periwinkle); font-weight: 600; margin-bottom: 16px; }

.cart-items { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 16px; }
.cart-empty { color: #6b6b8c; text-align: center; margin-top: 40px; font-size: 0.92rem; }

.cart-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.cart-item img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.cart-item__name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.cart-item__line-price { font-size: 0.82rem; color: #6b6b8c; }
.cart-item .stepper { flex-shrink: 0; }

.cart-panel__footer { border-top: 1px solid var(--tan); padding-top: 16px; margin-top: 8px; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.cart-panel__note { font-size: 0.75rem; color: #8686a3; text-align: center; margin-top: 10px; }

/* ==========================================================================
   Mobile sticky order bar
   ========================================================================== */
.mobile-order-bar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: var(--mobile-bar-h);
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--shadow-panel);
  z-index: 80;
}
@media (max-width: 900px) {
  .mobile-order-bar.is-visible { display: flex; }
}

/* Cart panel becomes a bottom sheet on small screens */
@media (max-width: 700px) {
  .cart-panel {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: min(82vh, 640px);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: translateY(100%);
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0));
  }
  .cart-panel.is-open { transform: translateY(0); }
}
