:root {
  --bg: #161410;
  --bg-alt: #1d1a15;
  --bg-alt2: #211d17;
  --gold: #FAC775;
  --gold-dim: #c9a05f;
  --cream: #e8e2d4;
  --cream-dim: #c9c0ac;
  --line: #3a352c;

  --font-head: 'Unbounded', sans-serif;
  --font-body: 'Archivo', sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html.cart-lock {
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22, 20, 16, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo-icon {
  width: 13px;
  height: auto;
  fill: none;
  stroke: var(--gold);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--cream);
  text-transform: uppercase;
}

.brand-name em {
  font-style: normal;
  color: var(--gold);
}

.main-nav {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--cream-dim);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.25s ease, opacity 0.25s ease;
  margin: 0 auto;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--cream);
}

.btn-ghost {
  background: none;
  border: none;
  padding: 14px 6px;
  color: var(--cream-dim);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--line);
}

.btn-ghost:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -55%);
  background: radial-gradient(circle, rgba(250, 199, 117, 0.10) 0%, rgba(250, 199, 117, 0) 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 24px;
}

.hero-logo {
  position: relative;
  width: 88px;
  height: 88px;
  margin-bottom: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-logo-glow {
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 199, 117, 0.14) 0%, rgba(250, 199, 117, 0) 70%);
  filter: blur(6px);
  z-index: -1;
}

.hero-logo-icon {
  width: 32px;
  height: auto;
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(40px, 8vw, 76px);
  letter-spacing: 2px;
  color: var(--cream);
  margin: 0;
  line-height: 1.05;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-slogan {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(16px, 2.4vw, 22px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 20px 0 0;
}

.hero-text {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--cream-dim);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 44px;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.scroll-cue span {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollcue 1.8s ease infinite;
}

@keyframes scrollcue {
  0% { opacity: 1; top: 7px; }
  70% { opacity: 0; top: 18px; }
  100% { opacity: 0; top: 18px; }
}

/* ---------- Section shared ---------- */

section { padding: 120px 0; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin: 0 0 14px;
}

.eyebrow--light { color: var(--gold); }

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 24px;
  letter-spacing: 0.5px;
}

.section-subtitle {
  color: var(--cream-dim);
  font-size: 15px;
  margin-top: -8px;
  margin-bottom: 48px;
}

/* ---------- About ---------- */

.about { background: var(--bg); }

.about-lead {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--cream-dim);
  margin-bottom: 64px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 28px;
}

.value-index {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dim);
  letter-spacing: 1px;
}

.value-card h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  color: var(--gold);
  margin: 16px 0 12px;
}

.value-card p {
  color: var(--cream-dim);
  font-size: 15px;
  margin: 0;
  line-height: 1.7;
}

/* ---------- Menu ---------- */

.menu { background: var(--bg-alt2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 64px;
}

.menu-category--wide {
  grid-column: 1 / -1;
}

.menu-category-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.menu-category-title--spaced {
  margin-top: 40px;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list--beans {
  columns: 2;
  column-gap: 64px;
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 0;
  break-inside: avoid;
}

.menu-item .name {
  font-size: 15.5px;
  color: var(--cream);
  white-space: nowrap;
}

.menu-item .name em {
  font-style: normal;
  color: var(--cream-dim);
  font-size: 13px;
}

.menu-item .dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  margin-bottom: 5px;
  min-width: 20px;
}

.menu-item .price {
  font-weight: 600;
  color: var(--gold);
  font-size: 15px;
  white-space: nowrap;
}

.add-btn {
  align-self: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.add-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.add-btn:active {
  transform: scale(0.9);
}

@media (hover: hover) and (pointer: fine) {
  .add-btn {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.2s ease, border-color 0.2s ease;
  }

  .menu-item:hover .add-btn,
  .menu-item:focus-within .add-btn {
    opacity: 1;
    transform: scale(1);
  }

  .menu-item:hover .add-btn:active,
  .menu-item:focus-within .add-btn:active {
    transform: scale(0.88);
    transition: opacity 0.5s ease, transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
  }
}

/* ---------- Atmosphere ---------- */

.atmosphere {
  background: var(--bg);
  text-align: center;
}

.atmosphere .section-title { color: var(--gold); }

.manifesto {
  list-style: none;
  margin: 56px auto 0;
  padding: 0;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.manifesto li {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(18px, 2.6vw, 24px);
  line-height: 1.5;
  color: var(--cream-dim);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.manifesto li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* ---------- Contact ---------- */

.contact { background: var(--bg-alt2); border-top: 1px solid var(--line); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-list {
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-list dt {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 6px;
}

.contact-list dd {
  margin: 0;
  font-size: 16px;
  color: var(--cream);
}

.social-links {
  display: flex;
  gap: 24px;
}

.social-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream-dim);
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.map-placeholder {
  position: relative;
  display: block;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-alt);
}

.map-view {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.map-placeholder:hover .map-view {
  transform: scale(1.04);
  opacity: 0.85;
}

.map-placeholder-label {
  position: absolute;
  left: 24px;
  bottom: 22px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.map-placeholder-label span {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 56px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-slogan {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin: 0;
}

.footer-copy {
  font-size: 13px;
  color: var(--cream-dim);
  margin: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.open {
    max-height: 320px;
  }

  .main-nav .nav-link {
    width: 100%;
    text-align: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .burger { display: flex; }

  .value-grid { grid-template-columns: 1fr; }

  .menu-grid { grid-template-columns: 1fr; }

  .menu-list--beans { columns: 1; }

  .contact-inner { grid-template-columns: 1fr; }

  section { padding: 84px 0; }
}

@media (max-width: 480px) {
  .hero {
    min-height: 100vh;
  }

  .hero-inner {
    padding: 44px 20px;
  }

  .hero-logo {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
  }

  .hero-logo-icon {
    width: 24px;
  }

  .hero-title {
    font-size: clamp(34px, 10vw, 44px);
  }

  .hero-slogan {
    margin-top: 12px;
  }

  .hero-text {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin-top: 26px;
  }

  .btn-primary { text-align: center; width: 100%; }

  .btn-ghost { padding: 8px 6px; }

  .scroll-cue { display: none; }
}

/* ---------- Custom cursor (hover-capable, fine-pointer devices only) ---------- */

@media (hover: hover) and (pointer: fine) {
  html {
    cursor:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M3 2 L3 19.5 L7.5 15.6 L10.6 21.8 L13.2 20.5 L10.1 14.3 L16 14.3 Z' fill='%23FAC775' stroke='%23161410' stroke-width='1.3' stroke-linejoin='round'/%3E%3C/svg%3E")
      3 2,
      auto;
  }

  a,
  button,
  .btn,
  .nav-link,
  .burger,
  .map-placeholder {
    cursor:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M3 2 L3 19.5 L7.5 15.6 L10.6 21.8 L13.2 20.5 L10.1 14.3 L16 14.3 Z' fill='%23161410' stroke='%23FAC775' stroke-width='1.3' stroke-linejoin='round'/%3E%3C/svg%3E")
      3 2,
      pointer;
  }
}

/* ---------- Takeout order: floating cart button ---------- */

.cart-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 400;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, background 0.2s ease;
}

.cart-fab:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.cart-fab-icon {
  width: 24px;
  height: 24px;
}

.cart-fab-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  background: var(--bg);
  color: var(--gold);
  border: 1.5px solid var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Takeout order: overlay + drawer ---------- */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 500;
}

.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(--bg-alt);
  border-left: 1px solid var(--line);
  z-index: 501;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-x: hidden;
  overflow-y: auto;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.cart-tabs {
  display: flex;
  gap: 20px;
  min-width: 0;
}

.cart-tabs[hidden] {
  display: none;
}

.cart-tab {
  border: none;
  background: none;
  padding: 4px 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: var(--cream-dim);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cart-tab:hover {
  color: var(--cream);
}

.cart-tab.is-active {
  color: var(--gold);
  border-color: var(--gold);
}

.cart-close {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: none;
  background: none;
  color: var(--cream-dim);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.cart-close:hover {
  color: var(--gold);
}

.cart-items {
  padding: 20px 28px;
  flex: 1;
}

.cart-empty {
  color: var(--cream-dim);
  font-size: 14px;
  line-height: 1.6;
}

.cart-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-row-name {
  flex: 1;
  min-width: 0;
  font-size: 14.5px;
  color: var(--cream);
  overflow-wrap: break-word;
}

.cart-row-price {
  font-size: 13px;
  color: var(--cream-dim);
  white-space: nowrap;
}

.cart-row-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: transparent;
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.cart-qty-btn:hover {
  background: var(--gold);
  color: var(--bg);
}

.cart-row-qty span {
  min-width: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--cream);
}

.cart-row-remove {
  border: none;
  background: none;
  color: var(--cream-dim);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 4px;
  transition: color 0.2s ease;
}

.cart-row-remove:hover {
  color: var(--gold);
}

.cart-summary {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--line);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 20px;
}

.cart-total-row span:last-child {
  color: var(--gold);
}

.cart-field-label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin: 0 0 8px;
}

.cart-field-optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--cream-dim);
}

.pickup-times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.pickup-chip {
  padding: 8px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream-dim);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.pickup-chip:hover {
  border-color: var(--gold-dim);
  color: var(--cream);
}

.pickup-chip.is-selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  font-weight: 600;
}

.cart-input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
}

.cart-input::placeholder {
  color: var(--cream-dim);
  opacity: 0.6;
}

.cart-input:focus {
  outline: none;
  border-color: var(--gold-dim);
}

.cart-submit {
  width: 100%;
  border: none;
  margin-top: 4px;
}

.cart-submit:disabled {
  background: var(--line);
  color: var(--cream-dim);
  cursor: not-allowed;
}

.cart-pay-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--cream-dim);
  opacity: 0.7;
}

.cart-confirmation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  min-height: 0;
  max-width: 100%;
  padding: 40px 32px;
  overflow: hidden;
  box-sizing: border-box;
  animation: cart-confirm-in 0.35s ease;
}

.cart-confirmation[hidden] {
  display: none;
}

@keyframes cart-confirm-in {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.cart-confirmation-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  animation: cart-confirm-pop 0.4s ease 0.1s both;
}

@keyframes cart-confirm-pop {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

.cart-confirmation-icon svg {
  width: 22px;
  height: 22px;
  max-width: 100%;
  max-height: 100%;
}

.cart-confirmation.is-fallback .cart-confirmation-icon {
  border-color: var(--gold-dim);
  color: var(--gold-dim);
}

.cart-confirmation-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--cream);
  margin: 0 0 8px;
  max-width: 100%;
  overflow-wrap: break-word;
}

.cart-confirmation-text {
  font-size: 14px;
  color: var(--cream-dim);
  margin: 0 0 4px;
  max-width: 280px;
  overflow-wrap: break-word;
}

.cart-confirmation-id {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gold-dim);
  margin: 8px 0 28px;
}

.cart-confirmation-close {
  width: 100%;
  max-width: 220px;
}

.cart-tab-panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.cart-tab-panel[hidden] {
  display: none;
}

.order-history {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}

.order-history-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px 16px;
  background: var(--bg);
}

.order-history-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.order-history-id {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--gold);
  flex-shrink: 0;
}

.order-history-date {
  font-size: 11px;
  color: var(--cream-dim);
  text-align: right;
}

.order-history-items {
  font-size: 13px;
  color: var(--cream-dim);
  margin: 0 0 8px;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.order-history-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.order-history-total {
  color: var(--cream);
  font-weight: 600;
}

.order-history-status {
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.order-history-status.sent {
  background: rgba(250, 199, 117, 0.12);
  color: var(--gold);
}

.order-history-status.fallback {
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream-dim);
}

@media (max-width: 640px) {
  .cart-drawer {
    width: 100vw;
    max-width: 100vw;
  }
}

@media (max-width: 480px) {
  .cart-fab {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  .cart-drawer {
    width: 100%;
  }

  .cart-drawer-header,
  .cart-items,
  .cart-summary,
  .order-history {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cart-confirmation {
    padding-left: 24px;
    padding-right: 24px;
  }
}
