/* ============================================
   NICE BURGER — MENU STYLESHEET v3 (RTL/AR)
   All-in-photo layout | Mobile-First
   ============================================ */

:root {
  --gold:         #C9A84C;
  --gold-dim:     #8A6D2F;
  --black:        #0D0D0D;
  --border:       rgba(201,168,76,0.15);
  --text:         #E8E2D6;
  --text-muted:   #b0a898;
  --font-display: 'Tajawal', sans-serif;
  --font-serif:   'Amiri', serif;
  --font-body:    'Tajawal', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background:
    linear-gradient(rgba(13,13,13,0.88), rgba(13,13,13,0.88)),
    url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?w=1600&q=80') fixed center / cover no-repeat;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
ul  {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  background: linear-gradient(160deg, rgba(26,20,9,0.55) 0%, rgba(13,13,13,0.45) 100%);
  padding: 60px 24px 48px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── HERO BURGER DROP ─── */
.hero__burger-drop {
  position: relative;
  z-index: 1;
  margin: 0 auto 24px;
  width: min(220px, 62vw);
  animation: burgerDrop 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.75));
}
.hero__burger-drop img {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(201,168,76,0.15);
}
.hero__content {
  position: relative;
  z-index: 2;
}

@keyframes burgerDrop {
  0%   { transform: translateY(-200px) scale(0.65) rotate(-14deg); opacity: 0; }
  65%  { transform: translateY(16px)   scale(1.05) rotate(3deg);  opacity: 1; }
  82%  { transform: translateY(-8px)   scale(0.98) rotate(-1deg); }
  100% { transform: translateY(0)      scale(1)    rotate(0deg);  opacity: 1; }
}
.hero__grain {
  position: absolute; inset: 0; opacity: 0.04; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 18vw, 96px);
  line-height: 0.95; letter-spacing: 0.01em; color: var(--text);
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero__title em {
  font-family: var(--font-serif); font-style: italic;
  color: var(--gold); font-size: 0.8em; display: block;
}
.hero__tagline {
  font-size: 14px; font-weight: 300; color: var(--text-muted);
  letter-spacing: 0.02em; margin-top: 16px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero__divider {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; margin: 24px 0 4px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero__divider span {
  height: 1px;
  width: 48px;
  background: var(--border);
}

/* ─── NAV ─── */
.category-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 16px;
}
.category-nav ul {
  display: flex; gap: 4px; overflow-x: auto;
  scrollbar-width: none; padding: 12px 0;
  justify-content: flex-start;
}
.category-nav ul::-webkit-scrollbar {
  display: none;
}
.cat-btn {
  white-space: nowrap; padding: 8px 18px; border-radius: 100px;
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  border: 1px solid transparent; transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease; flex-shrink: 0;
  font-family: var(--font-body);
}
.cat-btn:hover {
  color: var(--text);
  border-color: var(--border);
}
.cat-btn.active {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
}

/* ─── MAIN ─── */
.menu-main {
  padding: 0 0 64px;
  max-width: 680px;
  margin: 0 auto;
}

/* ─── SECTION ─── */
.menu-section {
  display: none;
}
.menu-section.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

.section-header {
  padding: 32px 20px 20px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px; letter-spacing: 0.01em; color: var(--text); line-height: 1.1;
}
.section-header p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ─── CONTAINER ─── */
.menu-container {
  display: flex; flex-direction: column;
  padding: 0 12px;
  border-radius: 14px; overflow: hidden;
}

/* ─── MENU ITEM ─── */
.menu-item {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  animation: fadeUp 0.4s ease both;
  cursor: zoom-in;
}
.menu-item:last-child {
  border-bottom: none;
}

/* ─── IMAGE ─── */
.item__img-wrap {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
}
.item__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.4s ease;
}
.menu-item:hover .item__img-wrap img {
  transform: scale(1.04);
}

/* ─── BADGE ─── */
.item__badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  background: var(--gold);
  color: var(--black);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 11px; border-radius: 100px;
  pointer-events: none;
  font-family: var(--font-body);
}

/* ─── OVERLAY ─── */
.item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.65) 45%,
    transparent 72%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 16px 18px;
  pointer-events: none;
}

.item__overlay-top {
  display: flex;
  justify-content: flex-end;
}
.item__tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.tag {
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 2px 9px; border-radius: 100px;
  backdrop-filter: blur(4px);
  font-family: var(--font-body);
}

.item__overlay-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.item__text {
  flex: 1;
  min-width: 0;
}
.item__name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  letter-spacing: 0.01em;
  color: #fff; line-height: 1.15;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.62);
}
.item__desc {
  font-size: 12px; color: rgba(255,255,255,0.7);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-body);
}
.item__price {
  display: flex; 
  flex-direction: column; gap: 5px;
  flex-shrink: 0; 
  align-self: flex-end;
}
.price-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  background: rgba(0,0,0,0.55);
  padding: 4px 10px; border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.18);
}
.price-label {
  font-size: 11px; font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-body);
  white-space: nowrap;
}
.price-val {
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; color: var(--gold);
  white-space: nowrap;
}

/* ─── FOOTER ─── */
.footer {
  text-align: center; padding: 40px 24px 48px;
  border-top: 1px solid var(--border);
  color: var(--text-muted); font-size: 13px; line-height: 2;
}
.footer__logo {
  font-family: var(--font-display); font-weight: 800; font-size: 28px;
  color: var(--gold-dim); letter-spacing: 0.02em; margin-bottom: 8px;
}
.footer__note {
  opacity: 0.5;
  font-size: 11px;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease; touch-action: none;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__img-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: grab;
}
.lightbox__img-wrap:active {
  cursor: grabbing;
}
.lightbox__img {
  max-width: 100vw; max-height: 100vh;
  width: auto; height: auto; object-fit: contain;
  user-select: none; -webkit-user-drag: none; pointer-events: none;
  border-radius: 6px; will-change: transform;
}

.lightbox__close {
  position: fixed; top: 16px; left: 16px; z-index: 1001;  /* flipped from right */
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; color: #fff; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; backdrop-filter: blur(8px);
  transition: background 0.2s;
}
.lightbox__close:hover {
  background: rgba(255,255,255,0.2);
}
.lightbox__hint {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 12px; color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em; pointer-events: none;
  transition: opacity 0.4s ease; white-space: nowrap;
  font-family: var(--font-body);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.menu-item:nth-child(1) {
  animation-delay: 0.04s;
}
.menu-item:nth-child(2) {
  animation-delay: 0.08s;
}
.menu-item:nth-child(3) {
  animation-delay: 0.12s;
}
.menu-item:nth-child(4) {
  animation-delay: 0.16s;
}
.menu-item:nth-child(5) {
  animation-delay: 0.20s;
}
.menu-item:nth-child(6) {
  animation-delay: 0.24s;
}

/* ─── DESKTOP ─── */
@media (min-width: 520px) {
  .hero {
    padding: 80px 32px 64px;
  }
  .menu-container {
    padding: 0 20px;
  }
  .item__img-wrap {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .item__name {
    font-size: 26px;
  }
  .price-val {
    font-size: 22px;
  }
  .item__desc {
    font-size: 13px;
  }
}

/* ─── PRICE TAG CLICKABLE ─── */
.item__price {
  pointer-events: all;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.item__price:hover  { transform: scale(1.06); filter: brightness(1.15); }
.item__price:active { transform: scale(0.96); }

/* ─── CART FAB ─── */
.cart-fab {
  position: fixed;
  bottom: 28px; left: 24px;
  z-index: 500;
  background: var(--gold);
  color: var(--black);
  border-radius: 100px;
  padding: 13px 22px;
  display: flex; align-items: center; gap: 10px;
  font-size: 22px;
  font-family: var(--font-body); font-weight: 800;
  box-shadow: 0 6px 28px rgba(0,0,0,0.55);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.cart-fab:hover { transform: scale(1.06); }
.cart-fab.hidden { opacity: 0; pointer-events: none; transform: scale(0.8); }
.cart-fab__count {
  background: var(--black); color: var(--gold);
  font-size: 13px; font-weight: 800;
  min-width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
@keyframes fabPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.cart-fab.fab-pulse { animation: fabPulse 0.4s ease; }

/* ─── CUSTOMIZE MODAL (bottom sheet) ─── */
.customize-modal {
  position: fixed; inset: 0; z-index: 600;
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.customize-modal.open { opacity: 1; pointer-events: all; }
.customize-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(5px);
}
.customize-modal__sheet {
  position: relative; z-index: 1;
  background: #161616;
  border-radius: 20px 20px 0 0;
  width: 100%; max-width: 600px;
  max-height: 90vh; overflow-y: auto;
  padding-bottom: env(safe-area-inset-bottom, 16px);
  transform: translateY(60px);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  border-top: 1px solid var(--border);
}
.customize-modal.open .customize-modal__sheet { transform: translateY(0); }
.customize-modal__handle {
  width: 38px; height: 4px;
  background: rgba(255,255,255,0.14); border-radius: 2px;
  margin: 13px auto 0;
}
.customize-modal__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px 12px;
  border-bottom: 1px solid var(--border);
}
.customize-modal__title {
  font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--text);
}
.customize-modal__close {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08); border-radius: 50%;
  color: var(--text); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.customize-modal__close:hover { background: rgba(255,255,255,0.16); }

/* Size selector */
.customize-size {
  display: flex; gap: 10px; padding: 16px 20px 0;
}
.size-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px; border-radius: 12px;
  border: 2px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.size-btn.active {
  border-color: var(--gold);
  background: rgba(201,168,76,0.12);
  color: var(--gold);
}
.size-btn__price {
  font-family: var(--font-display); font-size: 19px; font-weight: 800;
  color: var(--gold);
}
.size-btn:not(.active) .size-btn__price { color: var(--text-muted); }
.size-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Ingredients */
.customize-section-label {
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 18px 20px 10px;
}
.ingredients-grid {
  display: flex; flex-wrap: wrap; gap: 8px; padding: 0 20px 4px;
}
.ingredient-pill {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 100px;
  border: 1.5px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
  user-select: none;
}
.ingredient-pill[data-locked] {
  opacity: 0.45;
  cursor: not-allowed;
}
.ingredient-pill.active {
  border-color: var(--gold);
  background: rgba(201,168,76,0.15);
  color: var(--text);
}
.pill-emoji { font-size: 16px; }

.addition-pill.active {
  border-color: #5cb85c;
  background: rgba(92, 184, 92, 0.15);
  color: var(--text);
}
.pill-price {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201,168,76,0.15);
  padding: 2px 7px;
  border-radius: 100px;
  margin-inline-start: 4px;
}
.cart-item__additions {
  font-size: 12px;
  color: #7dbf7d;
  margin-top: 3px;
  line-height: 1.5;
}
.cart-item__drink {
  font-size: 12px;
  color: #7ab4d4;
  margin-top: 3px;
}

.drinks-label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.label-required {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201,168,76,0.15);
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.drink-pill.active {
  border-color: #4a9eda;
  background: rgba(74, 158, 218, 0.15);
  color: var(--text);
}
.customize-add-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* Notes */
.customize-notes { padding: 16px 20px 4px; }
.customize-notes textarea {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); font-family: var(--font-body); font-size: 14px;
  padding: 10px 14px; resize: none; outline: none;
  transition: border-color 0.2s;
}
.customize-notes textarea:focus { border-color: rgba(201,168,76,0.45); }
.customize-notes textarea::placeholder { color: var(--text-muted); }

/* Footer */
.customize-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
  margin-top: 14px;
}
.customize-total {
  font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--gold);
}
.customize-add-btn {
  background: var(--gold); color: var(--black);
  font-family: var(--font-body); font-size: 15px; font-weight: 800;
  padding: 13px 28px; border-radius: 100px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.customize-add-btn:hover  { transform: scale(1.04); background: #e0b84e; }
.customize-add-btn:active { transform: scale(0.96); }

/* ─── CART DRAWER (bottom sheet) ─── */
.cart-drawer {
  position: fixed; inset: 0; z-index: 650;
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-drawer.open { opacity: 1; pointer-events: all; }
.cart-drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(5px);
}
.cart-drawer__panel {
  position: relative; z-index: 1;
  background: #161616;
  border-radius: 20px 20px 0 0;
  width: 100%; max-width: 600px;
  max-height: 88vh;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
  transform: translateY(60px);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.cart-drawer.open .cart-drawer__panel { transform: translateY(0); }
.cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 20px 14px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer__header h2 {
  font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text);
}
.cart-drawer__close {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08); border-radius: 50%;
  color: var(--text); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cart-drawer__close:hover { background: rgba(255,255,255,0.16); }
.cart-drawer__body {
  flex: 1; overflow-y: auto; padding: 12px 0;
}
.cart-empty {
  text-align: center; color: var(--text-muted);
  padding: 40px 20px; font-size: 15px;
}

/* Cart item row */
.cart-item {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cart-item:last-child { border-bottom: none; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name {
  font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text);
}
.cart-item__size {
  font-size: 13px; font-weight: 500; color: var(--text-muted);
}
.cart-item__ings {
  font-size: 12px; color: var(--text-muted); margin-top: 3px; line-height: 1.5;
}
.cart-item__notes {
  font-size: 12px; color: var(--gold-dim); margin-top: 3px;
}
.cart-item__price {
  font-family: var(--font-display); font-size: 17px; font-weight: 800;
  color: var(--gold); margin-top: 6px;
}
.cart-item__controls {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0; padding-top: 2px;
}
.qty-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: var(--text);
  font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.qty-btn:hover { background: rgba(255,255,255,0.16); }
.qty-val {
  font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text);
  min-width: 20px; text-align: center;
}
.remove-btn {
  font-size: 13px;
  font-weight: 800;
  font-family: var(--font-body);
  color: var(--text);
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.remove-btn:hover  { background: rgba(220,60,60,0.25); color: #ff7070; }
.remove-btn:active { background: rgba(220,60,60,0.40); }

/* Cart footer */
.cart-drawer__footer {
  border-top: 1px solid var(--border);
  padding: 16px 20px 24px;
  flex-shrink: 0;
}
.cart-total-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; font-size: 15px; color: var(--text-muted);
}
.cart-total-amount {
  font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--gold);
}
.order-type-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.order-type-btn {
  flex: 1;
  padding: 11px;
  border-radius: 12px;
  border: 2px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.order-type-btn.active {
  border-color: var(--gold);
  background: rgba(201,168,76,0.12);
  color: var(--gold);
}
.order-type-btn:hover:not(.active) {
  border-color: rgba(201,168,76,0.4);
  color: var(--text);
}

.cart-checkout-btn {
  width: 100%; background: #25D366; color: #fff;
  font-family: var(--font-body); font-size: 16px; font-weight: 800;
  padding: 15px; border-radius: 100px;
  transition: transform 0.15s ease, filter 0.15s ease;
  letter-spacing: 0.01em;
}
.cart-checkout-btn:hover:not(:disabled)  { transform: scale(1.02); filter: brightness(1.08); }
.cart-checkout-btn:active:not(:disabled) { transform: scale(0.98); }
.cart-checkout-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  filter: grayscale(0.4);
}