/*
Theme Name: Wok & Spice
Theme URI: https://wokandspice.co.uk
Author: Wok & Spice
Author URI: https://wokandspice.co.uk
Description: Authentic Mumbai-Style Indo-Chinese & Japanese Fusion restaurant theme for Wok & Spice, Northwood London. Features add-to-cart, confetti celebrations, and free Manchurian promo.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wokandspice
Tags: restaurant, food, one-page, custom-background, custom-logo
*/

/* ===== CSS Variables ===== */
:root {
  --background: hsl(0, 0%, 7%);
  --foreground: hsl(40, 20%, 92%);
  --card: hsl(0, 0%, 10%);
  --card-foreground: hsl(40, 20%, 92%);
  --primary: hsl(40, 85%, 50%);
  --primary-foreground: hsl(0, 0%, 5%);
  --secondary: hsl(0, 0%, 14%);
  --secondary-foreground: hsl(40, 20%, 92%);
  --muted: hsl(0, 0%, 16%);
  --muted-foreground: hsl(30, 10%, 55%);
  --accent: hsl(8, 75%, 48%);
  --accent-foreground: hsl(40, 20%, 95%);
  --border: hsl(0, 0%, 18%);
  --destructive: hsl(0, 84%, 60%);
  --gold: hsl(40, 85%, 50%);
  --gold-light: hsl(40, 90%, 65%);
  --flame-red: hsl(8, 75%, 48%);
  --flame-orange: hsl(25, 90%, 55%);
  --gradient-gold: linear-gradient(135deg, hsl(40, 85%, 50%), hsl(25, 90%, 55%));
  --gradient-dark: linear-gradient(180deg, hsl(0, 0%, 7%) 0%, hsl(0, 0%, 4%) 100%);
  --green-400: hsl(142, 69%, 58%);
  --green-500: hsl(142, 71%, 45%);
  --green-900-20: hsla(142, 76%, 15%, 0.2);
  --green-700-30: hsla(142, 64%, 30%, 0.3);
  --radius: 0.5rem;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--background);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== Utility Classes ===== */
.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--flame-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-gold {
  background: var(--gradient-gold);
}

.bg-gradient-dark {
  background: var(--gradient-dark);
}

.section-divider {
  width: 6rem;
  height: 2px;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.glow-gold {
  box-shadow: 0 0 30px -5px hsla(40, 85%, 50%, 0.3);
}

.btn-primary {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { opacity: 0.9; }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  transition: background 0.2s;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover { background: hsla(40, 85%, 50%, 0.1); }

/* ===== Navbar ===== */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsla(0, 0%, 7%, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 5rem;
}

.site-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-navbar .logo img { height: 3.5rem; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsla(40, 20%, 92%, 0.8);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary); }

/* Desktop Menu Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsla(40, 20%, 92%, 0.8);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
}
.nav-dropdown-toggle:hover { color: var(--primary); }
.nav-chevron { font-size: 0.625rem; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  min-width: 12rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  overflow: hidden;
  z-index: 100;
}
.nav-dropdown-menu.active { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: none;
  color: hsla(40, 20%, 92%, 0.8);
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown-menu a:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* Mobile Menu Dropdown */
.mobile-dropdown-toggle {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsla(40, 20%, 92%, 0.8);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.mobile-dropdown-toggle:hover { color: var(--primary); }
.mobile-dropdown-items {
  flex-direction: column;
  padding-left: 1rem;
  gap: 0.25rem;
  padding-bottom: 0.5rem;
}
.mobile-dropdown-items a {
  font-size: 0.8125rem;
  color: hsla(40, 20%, 92%, 0.6);
  padding: 0.25rem 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav-phone:hover { color: var(--primary); }

/* Cart icon in navbar */
.nav-cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}
.nav-cart-btn:hover { color: var(--primary); }
.nav-cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(25%, -25%);
}
.nav-cart-badge:empty,
.nav-cart-badge[data-count="0"] { display: none; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: 1.5rem 1rem;
}

.mobile-menu.active { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsla(40, 20%, 92%, 0.8);
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: hsla(0, 0%, 7%, 0.7);
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), hsla(0, 0%, 7%, 0.4), transparent);
}

.hero-overlay-light {
  position: absolute;
  inset: 0;
  background: hsla(0, 0%, 7%, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-content--circle {
  text-align: right;
  max-width: none;
  width: 100%;
  padding: 0 2rem;
}

.hero-circle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: var(--primary);
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.hero-circle h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--primary-foreground);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.btn-dark {
  display: inline-block;
  background: var(--primary-foreground);
  color: var(--foreground);
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}

.btn-dark:hover { opacity: 0.9; }

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.btn-outline-light {
  display: inline-block;
  border: 1px solid hsla(0, 0%, 100%, 0.5);
  color: var(--primary-foreground);
  padding: 0.625rem 1.5rem;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.btn-outline-light:hover {
  background: hsla(0, 0%, 100%, 0.1);
}

@media (max-width: 768px) {
  .hero-content--circle { text-align: center; padding: 0 1rem; }
  .hero-circle { width: 18rem; height: 18rem; padding: 1.5rem; }
  .hero-circle h2 { font-size: 1.5rem; margin-bottom: 1rem; }
}

.hero-content .location {
  color: var(--primary);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-content .subtitle {
  font-size: 1.125rem;
  color: hsla(40, 20%, 92%, 0.7);
  margin-bottom: 2.5rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid hsla(40, 85%, 50%, 0.4);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
  animation: bounce 2s infinite;
}

.scroll-indicator .dot {
  width: 0.375rem;
  height: 0.75rem;
  background: var(--primary);
  border-radius: 9999px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== Offer Banner / Slider ===== */
.offer-banner {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: var(--background);
}

@media (min-width: 768px) { .offer-banner { height: 480px; } }

.offer-slide {
  position: absolute;
  inset: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  opacity: 0;
  transform: scale(1.05);
}

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

.offer-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-slide .overlay-lr {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--background), hsla(0, 0%, 7%, 0.8), transparent);
}

.offer-slide .overlay-dim {
  position: absolute;
  inset: 0;
  background: hsla(0, 0%, 7%, 0.3);
}

.offer-slide .content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}

.offer-slide .tag {
  display: inline-block;
  background: hsla(40, 85%, 50%, 0.2);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid hsla(40, 85%, 50%, 0.3);
  margin-bottom: 1rem;
}

.offer-slide h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  margin-bottom: 0.25rem;
}

.offer-slide .sub {
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.offer-slide .desc {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: hsla(0, 0%, 7%, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  cursor: pointer;
  transition: background 0.2s;
  font-size: 1.25rem;
}

.slider-arrow:hover { background: hsla(0, 0%, 7%, 0.8); }
.slider-arrow.prev { left: 0.75rem; }
.slider-arrow.next { right: 0.75rem; }

.slider-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.5rem;
}

.slider-dots button {
  height: 0.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: hsla(40, 20%, 92%, 0.3);
  width: 0.5rem;
}

.slider-dots button.active {
  width: 2rem;
  background: var(--primary);
}

/* ===== Menu Section ===== */
.menu-section {
  padding: 4rem 0;
  background: var(--gradient-dark);
}

@media (min-width: 768px) {
  .menu-section { padding: 6rem 0; }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .label {
  color: var(--primary);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.category-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.category-tabs::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
  .category-tabs {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    padding-bottom: 0;
  }
}

.category-tabs button {
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--secondary);
  color: var(--muted-foreground);
  white-space: nowrap;
  flex-shrink: 0;
}

.category-tabs button:hover {
  color: var(--foreground);
  background: var(--muted);
}

.category-tabs button.active {
  background: var(--gradient-gold);
  color: var(--primary-foreground);
}

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

.menu-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
  border-color: hsla(40, 85%, 50%, 0.3);
  box-shadow: 0 0 30px -5px hsla(40, 85%, 50%, 0.15);
}

.menu-card-img {
  width: 7rem;
  height: 7rem;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.menu-card-img .badge {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}

.menu-card-body {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.menu-card-body h3 {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}

.menu-card-body .desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Variant Selector ===== */
.variant-selector {
  display: flex;
  gap: 0.375rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.variant-btn {
  background: var(--secondary);
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  line-height: 1.4;
}
.variant-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.variant-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
  font-weight: 600;
}
.variant-extra {
  font-size: 0.625rem;
  opacity: 0.7;
  margin-left: 0.125rem;
}
.variant-btn.active .variant-extra {
  opacity: 0.9;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.menu-card-footer .price {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
}

/* ===== Add to Cart Button ===== */
.btn-add-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn-add-cart:hover { opacity: 0.9; }
.btn-add-cart svg { width: 0.75rem; height: 0.75rem; }

/* Quantity stepper (shown when item is in cart) */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.qty-stepper button {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
  transition: opacity 0.2s;
}
.qty-stepper .qty-minus {
  background: var(--muted);
  color: var(--foreground);
}
.qty-stepper .qty-minus:hover { background: var(--border); }
.qty-stepper .qty-plus {
  background: var(--primary);
  color: var(--primary-foreground);
}
.qty-stepper .qty-plus:hover { opacity: 0.8; }
.qty-stepper .qty-value {
  font-size: 0.875rem;
  font-weight: 600;
  width: 1.25rem;
  text-align: center;
}

/* ===== Cart Drawer ===== */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: hsla(0, 0%, 7%, 0.6);
  backdrop-filter: blur(4px);
  z-index: 100;
}
.cart-overlay.active { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 100%;
  max-width: 26rem;
  background: var(--card);
  border-left: 1px solid var(--border);
  z-index: 101;
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
}
.cart-drawer.active { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.cart-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cart-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
}
.cart-header .cart-count-badge {
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}
.cart-close-btn {
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.25rem;
  transition: color 0.2s;
}
.cart-close-btn:hover { color: var(--foreground); }

/* Order type toggle */
.order-type-toggle {
  display: flex;
  border-radius: 0.5rem;
  background: var(--secondary);
  padding: 0.25rem;
  margin: 1rem 1.25rem;
}
.order-type-toggle button {
  flex: 1;
  padding: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  color: var(--muted-foreground);
}
.order-type-toggle button.active {
  background: var(--gradient-gold);
  color: var(--primary-foreground);
}

/* Promo progress bar in cart */
.promo-bar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.875rem;
  margin: 0 1.25rem 0.75rem;
}
.promo-bar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}
.promo-bar-label {
  font-weight: 600;
  color: var(--primary);
}
.promo-bar-label.unlocked { color: var(--green-400); }
.promo-bar-amount {
  color: var(--muted-foreground);
}
.promo-bar-track {
  width: 100%;
  height: 0.5rem;
  background: var(--secondary);
  border-radius: 9999px;
  overflow: hidden;
}
.promo-bar-fill {
  height: 100%;
  border-radius: 9999px;
  background: var(--gradient-gold);
  transition: width 0.5s ease;
}
.promo-bar-fill.full { background: var(--green-500); }
.promo-bar-hint {
  font-size: 0.6875rem;
  color: var(--muted-foreground);
  margin-top: 0.375rem;
}
.promo-bar-hint strong { color: var(--primary); }

/* Cart items list */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 1.25rem;
}
.cart-empty {
  text-align: center;
  padding: 3rem 0;
  color: var(--muted-foreground);
}
.cart-empty-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: hsla(0, 0%, 14%, 0.5);
  margin-bottom: 0.75rem;
}
.cart-item.promo-item {
  background: var(--green-900-20);
  border: 1px solid var(--green-700-30);
}
.cart-item img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.375rem;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}
.cart-item-free {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-400);
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.cart-item-remove {
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0.25rem;
  margin-left: 0.25rem;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: var(--destructive); }

/* Cart footer */
.cart-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem;
}

/* Coupon styles */
.coupon-input-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.coupon-input {
  flex: 1;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
}
.coupon-input::placeholder { color: var(--muted-foreground); }
.coupon-input:focus { outline: none; border-color: var(--primary); }
.coupon-apply-btn {
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.coupon-apply-btn:hover { opacity: 0.9; }

.coupon-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--green-900-20);
  border: 1px solid var(--green-700-30);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
}
.coupon-applied-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--green-400);
}
.coupon-applied-pct {
  font-size: 0.75rem;
  opacity: 0.7;
}
.coupon-remove-btn {
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  cursor: pointer;
  transition: color 0.2s;
}
.coupon-remove-btn:hover { color: var(--destructive); }

.coupon-error {
  font-size: 0.75rem;
  color: var(--destructive);
  margin-bottom: 0.5rem;
}
.coupon-hint {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.375rem;
}
.coupon-hint strong { color: var(--primary); }

.cart-summary {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.375rem;
  color: var(--muted-foreground);
}
.cart-summary-row.discount { color: var(--green-400); }
.cart-summary-row.total {
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.25rem;
}
.cart-summary-row.total .total-amount { color: var(--primary); }

.btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem;
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-checkout:hover { opacity: 0.9; }

.btn-continue {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.btn-continue:hover { color: var(--foreground); }

/* ===== Floating Cart Button ===== */
.floating-cart-btn {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  padding: 1rem 1.5rem;
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  border: none;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 30px -5px hsla(40, 85%, 50%, 0.3);
  transition: opacity 0.2s;
  align-items: center;
  gap: 0.5rem;
}
.floating-cart-btn.visible { display: inline-flex; }
.floating-cart-btn:hover { opacity: 0.9; }

/* ===== Toast / Notification Popup ===== */
.ws-toast {
  position: fixed;
  top: 6rem;
  right: 1.5rem;
  z-index: 200;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  max-width: 22rem;
  box-shadow: 0 20px 40px hsla(0,0%,0%,0.5);
  transform: translateX(120%);
  transition: transform 0.4s ease;
  pointer-events: auto;
}
.ws-toast.show { transform: translateX(0); }
.ws-toast-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.ws-toast-desc {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}
.ws-toast-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  font-size: 1.25rem;
}

/* ===== About Section ===== */
.about-section {
  padding: 4rem 0;
  background: hsla(0, 0%, 14%, 0.3);
}

@media (min-width: 768px) {
  .about-section { padding: 6rem 0; }
}

.about-text {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
  font-size: 1.125rem;
  color: hsla(40, 20%, 92%, 0.7);
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s;
}

.feature-card:hover { border-color: hsla(40, 85%, 50%, 0.3); }

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== Map Embed ===== */
.map-wrapper {
  margin-top: 4rem;
}

.map-embed {
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 21 / 9;
}

@media (max-width: 768px) {
  .map-embed { aspect-ratio: 16 / 9; }
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== Gallery ===== */
.gallery-section {
  padding: 4rem 0;
  background: var(--gradient-dark);
}

@media (min-width: 768px) {
  .gallery-section { padding: 6rem 0; }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img { transform: scale(1.1); }

/* ===== Footer ===== */
.site-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-top: 1rem;
}

.footer-brand .logo img { height: 4rem; }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: color 0.2s, background 0.2s;
}

.social-links a:hover {
  color: var(--primary);
  background: var(--muted);
}

.footer-contact h3,
.footer-hours h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-contact a,
.footer-hours span {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--foreground); }

.footer-contact .icon,
.footer-hours .icon {
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.125rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

/* ===== Checkout Page ===== */
.checkout-page {
  min-height: 100vh;
  padding-bottom: 4rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .checkout-grid { grid-template-columns: 1fr; }
}

.checkout-summary,
.checkout-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.checkout-summary h2,
.checkout-form-wrap h2 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
}

.checkout-item:last-child { border-bottom: none; }

.checkout-item img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.375rem;
  object-fit: cover;
  flex-shrink: 0;
}

.checkout-item-info { flex: 1; min-width: 0; }
.checkout-item-name {
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.checkout-item-meta {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.checkout-item-total {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.checkout-totals {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Checkout form */
.checkout-form { }
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--foreground);
}
.form-group label .req { color: var(--accent); }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-error {
  display: block;
  font-size: 0.75rem;
  color: var(--destructive);
  margin-top: 0.25rem;
  min-height: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Payment options */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s;
  font-size: 0.875rem;
}

.payment-option.active {
  border-color: var(--primary);
  background: hsla(40, 85%, 50%, 0.05);
}

.payment-option input { display: none; }
.payment-option a { color: var(--primary); text-decoration: underline; }

/* Order confirmation */
.order-confirmation {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 32rem;
  margin: 0 auto;
}

.confirmation-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.order-confirmation h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.order-confirmation p {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.6;
}

.confirmation-summary {
  text-align: left;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.confirmation-summary p {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.btn-place-order:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== Postcode Distance Check ===== */
.postcode-input-wrap {
  display: flex;
  gap: 0.5rem;
}
.postcode-input-wrap input {
  flex: 1;
  padding: 0.75rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}
.postcode-input-wrap input:focus { outline: none; border-color: var(--primary); }
.postcode-check-btn {
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
  min-width: 5rem;
}
.postcode-check-btn:hover { opacity: 0.9; }
.postcode-result {
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  line-height: 1.5;
}
.postcode-result.checking {
  background: var(--secondary);
  color: var(--muted-foreground);
}
.postcode-result.success {
  background: var(--green-900-20);
  border: 1px solid var(--green-700-30);
  color: var(--green-400);
}
.postcode-result.warning {
  background: hsla(30, 80%, 20%, 0.2);
  border: 1px solid hsla(30, 80%, 40%, 0.3);
  color: hsl(30, 90%, 65%);
}
.postcode-result.error {
  background: hsla(0, 84%, 30%, 0.15);
  border: 1px solid hsla(0, 84%, 40%, 0.3);
  color: hsl(0, 84%, 70%);
}
.postcode-spinner { margin-right: 0.25rem; }

/* ===== WordPress Specific ===== */
.wp-block-image img { max-width: 100%; height: auto; }
.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 1rem; }
.alignright { float: right; margin-left: 1rem; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ===== Reviews Section ===== */
.reviews-section {
  padding: 4rem 0 5rem;
  background: var(--secondary);
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.reviews-rating {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.reviews-meta { text-align: left; }
.reviews-name { font-weight: 600; font-size: 1.125rem; }
.reviews-stars { color: var(--primary); font-size: 1.25rem; letter-spacing: 0.1em; }
.reviews-count { color: var(--muted-foreground); font-size: 0.875rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; padding: 0; }
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-stars { color: var(--primary); font-size: 1.25rem; margin-bottom: 1rem; }
.review-text { color: hsla(40,20%,92%,0.8); font-size: 0.875rem; font-style: italic; margin-bottom: 1rem; }
.review-link { color: var(--primary); font-size: 0.875rem; font-weight: 500; margin-bottom: 1rem; }
.review-link:hover { text-decoration: underline; }

.review-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ===== Booking Section ===== */
.booking-section {
  padding: 4rem 0 5rem;
  background: hsla(40, 85%, 50%, 0.9);
}

/* ===== Info Cards Section ===== */
.info-cards-section {
  padding: 4rem 0 5rem;
  background: var(--background);
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .info-cards-grid { grid-template-columns: 1fr; }
}

.info-card {
  text-align: center;
}

.info-card h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.info-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-outline-dark {
  display: inline-block;
  background: var(--primary-foreground);
  color: var(--foreground);
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s;
  text-decoration: none;
}

.btn-outline-dark:hover { background: var(--secondary); }

/* ===== Welcome Popup ===== */
.welcome-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: hsla(0,0%,0%,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.welcome-popup {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  max-width: 24rem;
  width: 100%;
  text-align: center;
  position: relative;
}

.welcome-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-size: 1.25rem;
  cursor: pointer;
}

.welcome-popup-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.welcome-popup h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.welcome-popup-sub {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.welcome-popup-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-align: center;
  font-weight: 700;
}

/* ===== Best Sellers Grid ===== */
.best-sellers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .best-sellers-grid { grid-template-columns: 1fr; }
}

.best-seller-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: hsla(0, 0%, 14%, 0.5);
  border-radius: 0.5rem;
  padding: 0.75rem;
  cursor: pointer;
  transition: background 0.2s;
}

.best-seller-card:hover { background: var(--secondary); }

.best-seller-card img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.375rem;
  object-fit: cover;
  flex-shrink: 0;
}

.best-seller-info {
  flex: 1;
  min-width: 0;
}

.best-seller-name {
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.best-seller-price {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
}

.best-seller-add {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.best-seller-add:hover { opacity: 0.8; }

/* menu-card-footer fix (was missing selector) */
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}
