/* ============================================================
   KEMALS - DELAD DESIGN
   Knappar: pill. Kort och bilder: 18px radie.
   ============================================================ */
:root {
  --ink:        #15110d;
  --ink-2:      #1d1812;
  --ink-3:      #262019;
  --bone:       #f1eadf;
  --bone-mute:  #b3a795;
  --bone-dim:   #877d6d;
  --ember:      #f2542d;
  --ember-deep: #c73b1a;
  --line:       rgba(241, 234, 223, 0.10);
  --line-soft:  rgba(241, 234, 223, 0.06);

  --display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --sans:    "Outfit", -apple-system, system-ui, sans-serif;

  --max: 1200px;
  --gut: clamp(20px, 4vw, 56px);
  --r:   18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--bone);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--ember); color: var(--ink); }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
}

h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }

.sec-title { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 14px; }
.sec-intro {
  color: var(--bone-mute);
  max-width: 58ch;
  margin-bottom: clamp(32px, 5vw, 56px);
}

/* ============================================================ NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 17, 13, 0.86);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}
.brand span { color: var(--ember); }
.nav-links {
  display: flex;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--bone-mute);
}
.nav-links a { transition: color 180ms var(--ease); }
.nav-links a:hover { color: var(--bone); }
.nav-links a[aria-current="page"] { color: var(--ember); }
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ember);
  color: #fff5f0;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 9px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 180ms var(--ease), transform 180ms var(--ease);
}
.nav-call:hover { background: var(--ember-deep); }
.nav-call:active { transform: scale(0.98); }

/* ============================================================ HERO (startsidan) */
.hero {
  position: relative;
  min-height: 82dvh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21,17,13,0.55) 0%, rgba(21,17,13,0.25) 40%, rgba(21,17,13,0.92) 100%),
    linear-gradient(100deg, rgba(21,17,13,0.72) 0%, rgba(21,17,13,0.15) 65%);
}
.hero-inner { padding-block: clamp(48px, 7vw, 80px); max-width: 640px; }
.hero-kicker {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 18px;
}
.hero h1 { font-size: clamp(3rem, 9vw, 5.6rem); font-weight: 800; margin-bottom: 18px; }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--bone-mute);
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 999px;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--ember); color: #fff5f0; }
.btn-primary:hover { background: var(--ember-deep); }
.btn-ghost { border: 1px solid rgba(241, 234, 223, 0.35); color: var(--bone); }
.btn-ghost:hover { border-color: var(--bone); }
.hero-status {
  margin-top: 26px;
  font-size: 0.92rem;
  color: var(--bone-mute);
  display: flex;
  align-items: center;
  gap: 10px;
}
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--bone-dim); flex: none; }
.status-dot.open { background: #58c26a; }
.status-dot.closed { background: var(--ember); }

/* ============================================================ SIDHUVUD (undersidor) */
.page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(300px, 42dvh, 440px);
}
.page-hero .hero-bg::after {
  background:
    linear-gradient(180deg, rgba(21,17,13,0.45) 0%, rgba(21,17,13,0.94) 100%);
}
.page-hero-inner { padding-block: clamp(32px, 5vw, 56px); max-width: 720px; }
.page-hero h1 { font-size: clamp(2.6rem, 6.5vw, 4.2rem); font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: var(--bone-mute); max-width: 52ch; }

/* ============================================================ KATEGORIRUTOR */
.cats { padding-block: clamp(64px, 9vw, 110px); }
.cat-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.cat {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.cat:nth-child(1) { grid-column: span 7; min-height: 380px; }
.cat:nth-child(2) { grid-column: span 5; min-height: 380px; }
.cat:nth-child(3) { grid-column: span 5; }
.cat:nth-child(4) { grid-column: span 7; }
.cat img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.cat::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(185deg, rgba(21,17,13,0.05) 40%, rgba(21,17,13,0.9) 100%);
}
.cat:hover img { transform: scale(1.04); }
.cat-txt { padding: 26px 28px; width: 100%; }
.cat-txt h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 2px; }
.cat-txt p {
  font-size: 0.92rem;
  color: var(--bone-mute);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.cat-txt .las-mer { color: var(--ember); font-weight: 600; white-space: nowrap; }
.cat:hover .las-mer { text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================ MENYSIDOR */
.meny { padding-block: clamp(56px, 8vw, 96px); }
.klass { margin-bottom: clamp(44px, 6vw, 64px); }
.klass:last-child { margin-bottom: 0; }
.klass-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.klass-head h2, .klass-head h3 { font-size: 1.5rem; }
.klass-head .pris { font-weight: 600; color: var(--ember); white-space: nowrap; }
.item-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 44px; }
.item { display: grid; grid-template-columns: auto 1fr; gap: 2px 14px; padding-block: 10px; }
.item .nr { font-weight: 600; color: var(--bone-dim); font-variant-numeric: tabular-nums; }
.item .namn { font-weight: 500; color: var(--bone); }
.item .desc { grid-column: 2; font-size: 0.9rem; color: var(--bone-dim); }
.meny-note {
  margin-top: 34px;
  padding: 18px 24px;
  border-radius: var(--r);
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  color: var(--bone-mute);
  font-size: 0.95rem;
  max-width: 640px;
}
.meny-note strong { color: var(--bone); font-weight: 500; }

/* Specials (pizzasidan) */
.specials {
  background: var(--ink-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding-block: clamp(56px, 8vw, 96px);
}
.spec-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.spec-media { border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 5; }
.spec-media img { width: 100%; height: 100%; object-fit: cover; }
.spec-list { display: flex; flex-direction: column; }
.spec-item {
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 24px;
  align-items: baseline;
}
.spec-item:last-child { border-bottom: none; }
.spec-item h3 { font-size: 1.5rem; }
.spec-item .pris { font-family: var(--display); font-weight: 700; font-size: 1.4rem; color: var(--ember); }
.spec-item p { grid-column: 1 / -1; color: var(--bone-mute); font-size: 0.98rem; }

/* Grillsidan */
.grill-grid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.grill-media {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: sticky;
  top: 96px;
}
.grill-media img { width: 100%; height: 100%; object-fit: cover; }
.grill-col h2 { font-size: 1.35rem; margin-bottom: 4px; }
.grill-col .under { color: var(--ember); font-weight: 600; font-size: 0.95rem; margin-bottom: 14px; }
.grill-block { margin-bottom: 34px; }
.grill-block:last-child { margin-bottom: 0; }
.rad { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-block: 9px; }
.rad .namn { font-weight: 500; }
.rad .desc { font-size: 0.88rem; color: var(--bone-dim); }
.rad-txt { min-width: 0; }
.rad .pris { font-variant-numeric: tabular-nums; color: var(--bone-mute); white-space: nowrap; }
.grill-not { font-size: 0.9rem; color: var(--bone-dim); font-style: italic; margin-top: 6px; }

/* Salladssidan */
.sal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sal-media { grid-row: span 2; grid-column: span 2; border-radius: var(--r); overflow: hidden; min-height: 100%; }
.sal-media img { width: 100%; height: 100%; object-fit: cover; }
.sal {
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sal h2 { font-size: 1.15rem; }
.sal p { font-size: 0.92rem; color: var(--bone-dim); flex: 1; }
.sal .pris { color: var(--ember); font-weight: 600; }

/* Dryckessidan */
.dry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.dry-card {
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 28px 30px;
}
.dry-card h2 {
  font-size: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.dry-card h2 .pris { color: var(--ember); font-size: 1rem; font-family: var(--sans); font-weight: 600; white-space: nowrap; }
.dry-card ul { list-style: none; }
.dry-card li { padding-block: 7px; color: var(--bone-mute); display: flex; justify-content: space-between; gap: 12px; }
.dry-card li span:last-child { color: var(--bone-dim); font-variant-numeric: tabular-nums; }
.dry-card .lit { font-size: 0.9rem; color: var(--bone-dim); margin-top: 14px; }

/* ============================================================ CTA-REMSA (undersidor) */
.bestall {
  padding-block: clamp(56px, 8vw, 96px);
  text-align: center;
}
.bestall h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
.bestall p { color: var(--bone-mute); margin-bottom: 26px; }
.bestall .btn { justify-content: center; }

/* ============================================================ OM OSS (startsidan) */
.om { padding-block: clamp(64px, 9vw, 110px); }
.om-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.om-txt .sec-intro { margin-bottom: 22px; }
.om-txt p { color: var(--bone-mute); max-width: 58ch; margin-bottom: 18px; }
.om-fakta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 12px 40px;
  margin-top: 34px;
  justify-content: start;
}
.faktum .tal {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--ember);
  line-height: 1.1;
}
.faktum .txt { font-size: 0.88rem; color: var(--bone-dim); }
.om-media { border-radius: var(--r); overflow: hidden; aspect-ratio: 3 / 4; }
.om-media img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================ HITTA HIT & TIDER */
.hitta {
  background: var(--ink-2);
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(64px, 9vw, 110px);
}
.hitta-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.kontakt-lista { display: flex; flex-direction: column; gap: 22px; margin-bottom: 34px; }
.kontakt-rad .label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 2px;
}
.kontakt-rad .varde { font-size: 1.15rem; font-weight: 500; }
.kontakt-rad a.varde:hover { color: var(--ember); }
.tider-rubrik { font-size: 1.3rem; margin-bottom: 4px; }
.tider-lista { list-style: none; margin-top: 8px; }
.tider-lista li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 9px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--bone-mute);
}
.tider-lista li.idag { color: var(--bone); font-weight: 500; }
.tider-lista li.idag .dag::after {
  content: "idag";
  margin-left: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
}
.tider-lista .tid { font-variant-numeric: tabular-nums; }
.tider-status { margin-top: 18px; font-size: 0.95rem; color: var(--bone-mute); display: flex; align-items: center; gap: 10px; }
.karta {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  height: 100%;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}
.karta iframe { width: 100%; flex: 1; border: 0; min-height: 400px; filter: grayscale(0.35) contrast(1.05); }
.karta-lank {
  display: block;
  padding: 14px 20px;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  background: var(--ink);
  color: var(--bone-mute);
  transition: color 180ms var(--ease);
}
.karta-lank:hover { color: var(--ember); }

/* ============================================================ FOOTER */
.foot { border-top: 1px solid var(--line-soft); padding-block: clamp(44px, 6vw, 64px); }
.foot-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.foot .brand { font-size: 1.3rem; margin-bottom: 10px; display: inline-block; }
.foot p { color: var(--bone-dim); font-size: 0.95rem; max-width: 34ch; }
.foot h4 {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 14px;
}
.foot ul { list-style: none; }
.foot ul li { margin-bottom: 9px; }
.foot ul a { color: var(--bone-mute); font-size: 0.95rem; transition: color 180ms var(--ease); }
.foot ul a:hover { color: var(--bone); }
.foot-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--bone-dim);
}

/* ============================================================ REVEAL */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  }
  .reveal.in { opacity: 1; transform: none; }
}

/* ============================================================ MOBIL */
@media (max-width: 960px) {
  .spec-grid, .grill-grid, .om-grid, .hitta-grid { grid-template-columns: 1fr; }
  .spec-media { aspect-ratio: 16 / 10; }
  .grill-media { position: static; }
  .om-media { aspect-ratio: 16 / 10; order: -1; }
  .sal-grid, .dry-grid { grid-template-columns: 1fr 1fr; }
  .sal-media { grid-row: span 1; min-height: 220px; }
  .karta { min-height: 380px; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .hero { min-height: 74dvh; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat, .cat:nth-child(1), .cat:nth-child(2), .cat:nth-child(3), .cat:nth-child(4) {
    grid-column: 1 / -1;
    min-height: 240px;
  }
  .item-grid { grid-template-columns: 1fr; }
  .sal-grid, .dry-grid { grid-template-columns: 1fr; }
  .sal-media { grid-column: span 1; }
  .foot-row { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; }
  .om-fakta { gap: 12px 28px; }
}

@media (max-width: 760px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  body { overflow-x: hidden; }
}

/* ============================================================
   KUNDVAGN
   ============================================================ */
.add-btn {
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(242, 84, 45, 0.55);
  background: transparent;
  color: var(--ember);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
  font-family: var(--sans);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease);
}
.add-btn:hover { background: var(--ember); color: #fff5f0; }
.add-btn:active { transform: scale(0.9); }
.add-btn.added { background: var(--ember); color: #fff5f0; transform: scale(1.12); }

.item { grid-template-columns: auto 1fr auto; }
.item .add-btn { grid-column: 3; grid-row: 1 / span 2; align-self: center; }
.spec-item { grid-template-columns: 1fr auto auto; }
.spec-item .add-btn { align-self: center; }
.spec-item p { grid-column: 1 / -1; }
.sal-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.dry-card li .add-btn { width: 28px; height: 28px; font-size: 1rem; }

.cart-fab {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ember);
  color: #fff5f0;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  transition: background 180ms var(--ease), transform 180ms var(--ease);
}
.cart-fab:hover { background: var(--ember-deep); }
.cart-fab:active { transform: scale(0.97); }
.cart-fab[hidden] { display: none; }
.cart-fab .badge {
  background: #fff5f0;
  color: var(--ember-deep);
  border-radius: 999px;
  min-width: 22px;
  height: 22px;
  padding-inline: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 69;
  background: rgba(10, 8, 6, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  height: 100dvh;
  width: min(420px, 100vw);
  background: var(--ink-2);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 320ms var(--ease);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line-soft);
}
.cart-head h2 { font-size: 1.3rem; }
.cart-close {
  background: none;
  border: 1px solid var(--line);
  color: var(--bone-mute);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1rem;
  cursor: pointer;
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}
.cart-close:hover { color: var(--bone); border-color: var(--bone-mute); }
.cart-body { flex: 1; overflow-y: auto; padding: 10px 26px; }
.cart-tom { color: var(--bone-dim); padding-block: 26px; }
.cart-rad {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.cart-rad .namn { font-weight: 500; font-size: 0.98rem; }
.cart-rad .apris { font-size: 0.85rem; color: var(--bone-dim); }
.cart-qty { display: flex; align-items: center; gap: 10px; flex: none; }
.cart-qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: none;
  color: var(--bone);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms var(--ease), color 160ms var(--ease);
}
.cart-qty button:hover { border-color: var(--ember); color: var(--ember); }
.cart-qty .antal { min-width: 20px; text-align: center; font-weight: 600; font-variant-numeric: tabular-nums; }
.cart-foot { padding: 20px 26px 26px; border-top: 1px solid var(--line-soft); }
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.cart-total .summa { font-family: var(--display); font-size: 1.4rem; color: var(--ember); }
.cart-not { font-size: 0.88rem; color: var(--bone-dim); margin-bottom: 16px; }
.cart-foot .btn { width: 100%; justify-content: center; }
.cart-clear {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  color: var(--bone-dim);
  font-family: var(--sans);
  font-size: 0.88rem;
  margin-top: 14px;
  cursor: pointer;
}
.cart-clear:hover { color: var(--ember); }

@media (prefers-reduced-motion: reduce) {
  .cart-drawer, .cart-overlay, .add-btn, .cart-fab { transition: none; }
}
