/* =========================================================
   PIZZA TASTY - FOOD TESTY EXACT STYLING & DESIGN (100% FIDELITY)
   Reference: https://food-testy.vercel.app/
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300..900;1,300..900&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
  --primary-red: #d32f2f;
  --primary-red-hover: #b71c1c;
  --gold-accent: #ffb800;
  --gold-hover: #e0a200;
  --dark-bg: #0c0d10;
  --dark-card: rgba(22, 24, 30, 0.85);
  --dark-card-border: rgba(255, 255, 255, 0.08);
  --text-main: #f5f5f7;
  --text-muted: #a0a0ab;
  --white: #ffffff;
  --shadow-glow: 0 8px 32px rgba(211, 47, 47, 0.25);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.4);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Compatibility Aliases */
  --black: #0c0d10;
  --dark: #111217;
  --card-bg: rgba(22, 24, 30, 0.85);
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(255, 184, 0, 0.4);
  --gold: #ffb800;
  --red: #d32f2f;
  --green: #00e676;
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Outfit', 'Montserrat', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-main);
  overflow-x: clip;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  background: radial-gradient(circle at 50% 0%, rgba(211, 47, 47, 0.18) 0%, rgba(12, 13, 16, 1) 70%);
}

/* Accent Flag Bar */
.flag-bar {
  height: 4px;
  background: linear-gradient(90deg, #00e676 33.3%, #ffffff 33.3%, #ffffff 66.6%, #d32f2f 66.6%);
}

/* NAVBAR / HEADER */
#topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 13, 16, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-card-border);
  padding: 8px 0;
  transition: var(--transition-fast);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  height: 64px;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.topbar-brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.topbar-brand-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-accent);
  text-shadow: 0 0 10px rgba(255, 184, 0, 0.4);
}

.topbar-brand-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 2px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-cart-nav {
  background: linear-gradient(135deg, var(--primary-red) 0%, #900c1c 100%);
  color: #ffffff;
  border: none;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(211, 47, 47, 0.35);
  transition: var(--transition-fast);
  height: 32px;
}

.btn-cart-nav:hover {
  transform: translateY(-1px);
}

.cart-count-badge {
  background: var(--gold-accent);
  color: #000000;
  font-size: 0.7rem;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-card-border);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  transition: var(--transition-fast);
}

.hamburger:hover {
  border-color: var(--gold-accent);
  background: rgba(255, 184, 0, 0.15);
}

.hamburger span {
  display: block;
  height: 2px;
  width: 20px;
  background: var(--gold-accent);
  transition: all 0.35s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.dropdown-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(12, 13, 16, 0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--dark-card-border);
  z-index: 299;
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu.open {
  max-height: 340px;
}

.dropdown-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.25s;
}

.dropdown-menu a:hover {
  color: var(--gold-accent);
  background: rgba(255, 184, 0, 0.1);
  padding-left: 36px;
}

/* HERO SECTION WITH BACKGROUND SLIDESHOW & GLOW */
.hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 35px 0 30px;
  background: var(--dark-bg);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.0s ease-in-out;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  display: none !important;
}

.hero-glow-aura {
  display: none !important;
}

.kiosk-progress-container {
  display: none !important;
}

@keyframes auraPulse {
  0% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.25); opacity: 0.95; }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  gap: 16px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(12, 13, 16, 0.78);
  border: 1px solid rgba(255, 184, 0, 0.6);
  color: var(--gold-accent);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(255, 184, 0, 0.3);
  backdrop-filter: blur(10px);
  animation: floatTag 3.5s ease-in-out infinite alternate;
}

@keyframes floatTag {
  0% { transform: translateY(0); box-shadow: 0 0 15px rgba(255, 184, 0, 0.25); }
  100% { transform: translateY(-6px); box-shadow: 0 8px 25px rgba(255, 184, 0, 0.45); }
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95);
}

.hero-title span {
  background: linear-gradient(135deg, #ff3b3b 0%, #ff8c00 50%, #ff3b3b 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shinyGradient 3s linear infinite;
  filter: drop-shadow(0 0 15px rgba(255, 59, 59, 0.6));
}

@keyframes shinyGradient {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Story Progress Bar */
.kiosk-progress-container {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.kiosk-progress-bar {
    flex: 1;
    height: 3.5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(135deg, var(--gold-accent) 0%, #ff8f00 100%);
    border-radius: 4px;
    transition: width 0.1s linear;
}

.kiosk-progress-bar.completed .progress-fill {
    width: 100% !important;
}

/* Kiosk Top Badge */
.kiosk-badge {
    position: absolute;
    top: 96px;
    left: 24px;
    background: linear-gradient(135deg, var(--primary-red), #b71c1c);
    color: #ffffff;
    font-size: 0.85em;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.5);
    text-transform: uppercase;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
    z-index: 5;
}

.hero-slide.active .kiosk-badge {
    opacity: 1;
    transform: translateY(0);
}

.hero-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(10, 12, 26, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(0, 230, 118, 0.6);
    border-radius: 30px;
    padding: 12px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 230, 118, 0.3);
    z-index: 5;
    opacity: 0;
    transition: all 0.6s ease-out 0.2s;
    white-space: nowrap;
}

.hero-slide.active .hero-caption {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.caption-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15em;
    font-weight: 800;
    color: #00e676;
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.8), 0 0 20px rgba(0, 230, 118, 0.4);
    letter-spacing: 0.5px;
}

.caption-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2em;
    font-weight: 900;
    color: #ff1744;
    text-shadow: 0 0 10px rgba(255, 23, 68, 0.9), 0 0 20px rgba(255, 23, 68, 0.5);
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

/* STICKY CATEGORY NAV (FOOD TESTY STYLE) */
#main-nav {
  position: sticky;
  top: 64px;
  z-index: 150;
  background: rgba(12, 13, 16, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-card-border);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  overflow: visible !important;
}

.nav-inner {
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.nav-inner::-webkit-scrollbar {
  display: none;
}

.category-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-card-border);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.category-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.category-btn.active {
  background: linear-gradient(135deg, var(--gold-accent) 0%, #e0a200 100%);
  color: #000000;
  border-color: var(--gold-accent);
  box-shadow: 0 4px 14px rgba(255, 184, 0, 0.35);
  font-weight: 900;
}

/* CATEGORY BRUSH TITLES (FOOD TESTY STYLE) */
.category-header {
  position: relative;
  display: block;
  margin: 28px 0 18px;
}

.category-brush-title {
  background: linear-gradient(90deg, var(--gold-accent) 0%, #ffd000 100%);
  color: #000000;
  font-weight: 900;
  font-size: 1.15rem;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 6px;
  transform: skew(-6deg);
  display: inline-block;
  box-shadow: 0 4px 14px rgba(255, 184, 0, 0.3);
  letter-spacing: 0.5px;
}

/* MENU SECTION & GRID */
main {
  background: var(--dark-bg);
  padding-bottom: 120px;
}

.category-section {
  padding: 20px 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

/* FOOD TESTY PRODUCT CARD */
.menu-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 100%;
  overflow: hidden;
  transition: var(--transition-fast);
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-red);
  opacity: 0;
  border-top-left-radius: var(--radius-md);
  border-bottom-left-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.menu-card:hover {
  border-color: rgba(255, 184, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.menu-card:hover::before {
  opacity: 1;
}

.card-img-container {
  width: calc(100% + 32px);
  margin: -16px -16px 12px -16px;
  height: 210px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--primary-red);
  background: var(--dark-bg);
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-card:hover .card-img-container img {
  transform: scale(1.05);
}

/* Specific heights and adjustments for categories */
#jus .card-img-container {
  height: 300px !important;
}

#pizza .card-img-container {
  height: 220px;
}

.card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-name {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.25;
}

.card-size-options {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  width: 100%;
}

.size-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-card-border);
  color: var(--text-muted);
  padding: 7px 4px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.size-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  gap: 8px;
}

.price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gold-accent);
  white-space: nowrap;
}

.add-btn {
  background: var(--primary-red);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-fast);
  box-shadow: 0 4px 14px rgba(211, 47, 47, 0.35);
}

.add-btn:hover {
  background: var(--primary-red-hover);
  transform: translateY(-2px);
}

/* BOTTOM SECTION (RESERVATION & LOCATION) */
#bottom-section {
  padding: 60px 16px;
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-card-border);
}

.bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.bottom-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
}

.section-card-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 6px;
}

.section-card-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 24px;
}

.res-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-card-border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  margin-bottom: 12px;
}

.res-input:focus {
  border-color: var(--gold-accent);
}

.res-btn {
  width: 100%;
  background: #25d366;
  border: none;
  border-radius: 12px;
  padding: 14px;
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transition: var(--transition-fast);
}

.res-btn:hover {
  background: #1eb857;
  transform: translateY(-2px);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 15px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-card-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

.info-box:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 184, 0, 0.35);
  transform: translateY(-2px);
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 184, 0, 0.15);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-icon.whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.info-text strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
}

.info-text p, .info-text a {
  color: var(--text-muted);
  font-size: 0.84rem;
  text-decoration: none;
}

/* BOTTOM CART BAR */
.bottom-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(140px);
  z-index: 250;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: calc(100% - 32px);
  max-width: 480px;
}

.bottom-bar.visible {
  transform: translateX(-50%) translateY(0);
}

.cart-fab {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-red) 0%, #900c1c 100%);
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  color: #ffffff;
  font-weight: 800;
}

.cart-fab-total {
  font-size: 1.15rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 14px;
  border-radius: 20px;
  color: var(--gold-accent);
}

/* FOOTER */
footer {
  background: #090a0d;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid var(--dark-card-border);
}

.footer-logo {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold-accent);
  margin-bottom: 12px;
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 12px;
}

/* BODY SCROLL LOCK WHEN DRAWER IS OPEN */
body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
  height: 100dvh !important;
  touch-action: none !important;
  position: fixed !important;
  width: 100% !important;
}

/* CART DRAWER & OVERLAY 100% FOOD TESTY STYLING */
.overlay, .cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.overlay.open, .overlay.active, .cart-overlay.open, .cart-overlay.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.drawer, .cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  height: 100dvh;
  background: #111217;
  z-index: 999;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--dark-card-border);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overscroll-behavior: contain;
}

.drawer.open, .drawer.active, .cart-drawer.open, .cart-drawer.active {
  right: 0 !important;
}

.cart-header {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--dark-card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.btn-close-cart {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px;
}

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

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-card-border);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  gap: 10px;
}

.cart-item-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-gold);
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.cart-item-info span {
  font-size: 0.8rem;
  color: var(--gold-accent);
  font-weight: 800;
}

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  padding: 2px 6px;
  flex-shrink: 0;
}

.cart-qty-ctrl .qty-btn {
  background: none;
  border: none;
  color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-qty-ctrl .qty-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cart-options-section {
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--dark-card-border);
}

.order-type-selector {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.order-type-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-card-border);
  color: var(--text-muted);
  padding: 10px 4px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.order-type-btn.active {
  background: var(--gold-accent);
  color: #000;
  border-color: var(--gold-accent);
  font-weight: 800;
}

.order-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-card-border);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  outline: none;
  margin-top: 4px;
  font-family: inherit;
}

.order-input:focus {
  border-color: var(--gold-accent);
}

.cart-footer {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--dark-card-border);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}

.cart-total-price {
  color: var(--gold-accent);
  font-size: 1.25rem;
}

.btn-whatsapp-order {
  width: 100%;
  background: #25d366;
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transition: var(--transition-fast);
  text-decoration: none;
}

.btn-whatsapp-order:hover {
  background: #1eb857;
  transform: translateY(-2px);
}
