/* LAPIZARQ — Main CSS */
:root {
  --primary: #1A1A2E;
  --secondary: #E8A020;
  --accent: #F5F0E8;
  --dark: #0D0D1A;
  --surface: #242438;
  --text-muted: #A0A0C0;
  --success: #2ECC71;
  --border: rgba(232, 160, 32, 0.2);
}

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

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--primary);
  color: var(--accent);
  overflow-x: hidden;
  overscroll-behavior-y: contain;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

h1 {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
}

h2 {
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 700;
}

h3 {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

body {
  font-size: clamp(14px, 2vw, 18px);
}

input, textarea, select {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--secondary);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  z-index: 9999;
}

.skip-link:focus {
  top: 1rem;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease;
  padding: 0.75rem 0;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--secondary);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
}

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

.nav-link {
  text-decoration: none;
  color: var(--accent);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--secondary);
  background: rgba(232, 160, 32, 0.1);
}

.nav-link:focus {
  outline: 3px solid var(--secondary);
}

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

.cart-icon {
  position: relative;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.cart-icon:hover {
  background: rgba(232, 160, 32, 0.1);
}

.cart-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--secondary);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

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

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

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

/* MOBILE MENU */
.mobile-menu {
  display: none;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.show {
  display: flex;
  opacity: 1;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu ul li {
  margin: 1rem 0;
}

.mobile-menu ul li a {
  color: var(--accent);
  text-decoration: none;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  transition: color 0.2s;
}

.mobile-menu ul li a:hover {
  color: var(--secondary);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
  padding: 14px 32px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--secondary);
  color: var(--dark);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232, 160, 32, 0.35);
  outline: none;
}

.btn-outline {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232, 160, 32, 0.35);
  background: rgba(232, 160, 32, 0.08);
  outline: none;
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn:focus {
  outline: 3px solid var(--secondary);
}

/* SECTIONS */
section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background: var(--dark);
}

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

.section-title h2 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.gold {
  color: var(--secondary);
}

/* CARDS */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  box-shadow: 0 0 24px rgba(232, 160, 32, 0.15);
  transform: translateY(-4px);
}

/* MENU GRID */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.menu-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.menu-item:hover {
  box-shadow: 0 0 24px rgba(232, 160, 32, 0.15);
  transform: translateY(-4px);
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.item-content {
  padding: 1.25rem;
}

.item-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.item-content p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.price {
  color: var(--secondary) !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1593560708920-61dd98c46a4e?w=1600');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 26, 0.65);
}

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

.hero-content h1 {
  margin-bottom: 1rem;
  color: var(--accent);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 2rem;
}

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

/* TRUST BAR */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-icon {
  font-size: 2rem;
}

.trust-item strong {
  color: var(--secondary);
  font-size: 1.1rem;
}

.trust-item span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* CAROUSEL */
.carousel-wrapper {
  overflow: hidden;
}

.carousel {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) var(--surface);
}

.carousel::-webkit-scrollbar {
  height: 6px;
}

.carousel::-webkit-scrollbar-track {
  background: var(--surface);
}

.carousel::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 3px;
}

.carousel-item {
  flex: 0 0 300px;
  width: 300px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.carousel-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(232, 160, 32, 0.15);
}

.carousel-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.carousel-item-content {
  padding: 1rem;
}

.carousel-item-content h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.carousel-item-content .price {
  font-size: 1rem;
}

/* PROMOS */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.promo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(232, 160, 32, 0.15);
}

.promo-card .promo-badge {
  background: var(--secondary);
  color: var(--dark);
  border-radius: 50px;
  padding: 0.25rem 1rem;
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.promo-card h3 {
  margin-bottom: 0.5rem;
}

.promo-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.review-stars {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.review-text {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 700;
}

.review-name {
  font-weight: 600;
}

.review-city {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* NEWSLETTER */
.newsletter-section {
  background: var(--dark);
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.newsletter-form input {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 14px 20px;
  border-radius: 50px;
  min-width: 280px;
}

.newsletter-form input:focus {
  outline: 3px solid var(--secondary);
  border-color: var(--secondary);
}

/* FILTER BAR */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  align-items: center;
}

.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
  font-weight: 700;
}

.search-box {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  min-width: 220px;
}

.search-box:focus {
  outline: 3px solid var(--secondary);
  border-color: var(--secondary);
}

/* CART / ORDER */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

.cart-sidebar {
  position: sticky;
  top: 80px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.cart-sidebar h3 {
  margin-bottom: 1rem;
  color: var(--accent);
}

#cart-items {
  min-height: 60px;
}

.cart-empty {
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

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

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

.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.cart-total-row.grand-total {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary);
}

.promo-row {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}

.promo-row input {
  flex: 1;
  background: var(--primary);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

#promo-message {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* DELIVERY TOGGLE */
.delivery-toggle {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 2rem;
  width: fit-content;
}

.delivery-toggle button {
  padding: 0.75rem 2rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: all 0.2s;
  border-radius: 50px;
}

.delivery-toggle button.active {
  background: var(--secondary);
  color: var(--dark);
}

/* TRACKER */
.order-tracker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-top: 2rem;
}

.tracker-step {
  text-align: center;
}

.tracker-step .step-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.tracker-step .step-label {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.tracker-step.active .step-label {
  color: var(--secondary);
  font-weight: 600;
}

.tracker-line {
  flex: 1;
  height: 2px;
  background: var(--border);
}

/* LOCATIONS */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.location-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(232, 160, 32, 0.15);
}

.location-card h3 {
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.location-card .address {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.location-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.feature {
  background: rgba(232, 160, 32, 0.1);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

.location-search-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.location-search-bar input {
  flex: 1;
  min-width: 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
}

.location-search-bar input:focus {
  outline: 3px solid var(--secondary);
}

.location-filters {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.location-filters label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

.location-filters input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 16px;
  height: 16px;
}

/* CONTACT */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--primary);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 3px solid var(--secondary);
  border-color: var(--secondary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select option {
  background: var(--surface);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-card a {
  color: var(--secondary);
  text-decoration: none;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.faq-list summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-list summary::after {
  content: '+';
  color: var(--secondary);
  font-size: 1.25rem;
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
}

/* ACCOUNT */
.account-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tab-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
}

.account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
}

.tab-panel {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.tab-panel.active {
  display: block;
}

/* ALLERGENS TABLE */
.allergen-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.allergen-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.allergen-table th {
  background: var(--dark);
  color: var(--secondary);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.85rem;
  white-space: nowrap;
}

.allergen-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.allergen-table tr:nth-child(even) td {
  background: rgba(36, 36, 56, 0.5);
}

.allergen-check {
  color: var(--secondary);
  font-weight: 700;
}

.allergen-no {
  color: var(--text-muted);
}

/* PAYMENT BADGES */
.payment-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.payment-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
}

.cookie-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.cookie-content h3 {
  flex: 0 0 auto;
  color: var(--secondary);
}

.cookie-content p {
  flex: 1;
  min-width: 200px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* CHAT BUBBLE */
.chat-bubble {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(232, 160, 32, 0.4);
  transition: transform 0.2s;
}

.chat-bubble:hover {
  transform: scale(1.1);
}

.chat-bubble svg {
  width: 28px;
  height: 28px;
  stroke: var(--dark);
}

.chat-modal {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 991;
  width: 300px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  display: none;
}

.chat-modal.show {
  display: block;
}

.chat-header {
  background: var(--dark);
  padding: 1rem 1.25rem;
  border-radius: 16px 16px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h4 {
  color: var(--secondary);
}

.chat-header button {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
}

.chat-body {
  padding: 1.25rem;
}

.chat-body p {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.chat-body a {
  color: var(--secondary);
}

/* SCROLL TO TOP */
.scroll-top-btn {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 989;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--secondary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s;
}

.scroll-top-btn:hover {
  background: var(--secondary);
  color: var(--dark);
}

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--secondary);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s;
}

/* FOOTER */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin: 0.75rem 0;
  font-size: 0.9rem;
}

.footer-brand a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-brand a:hover {
  color: var(--secondary);
}

.footer-links h4,
.footer-newsletter h4 {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links ul li a:hover {
  color: var(--secondary);
}

.footer-newsletter p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-newsletter .newsletter-form {
  flex-direction: column;
  align-items: flex-start;
}

.footer-newsletter .newsletter-form input {
  min-width: 100%;
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ABOUT */
.about-hero {
  min-height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1200');
  background-size: cover;
  background-position: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 26, 0.7);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--secondary);
  font-family: 'Playfair Display', serif;
}

.stat-label {
  color: var(--text-muted);
}

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

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 1.5rem;
}

.team-avatar {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.team-card h3 {
  margin: 1rem 0 0.25rem;
}

.team-card p {
  color: var(--secondary);
  font-size: 0.875rem;
}

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

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-muted);
}

/* PRIVACY/TERMS/COOKIES */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  color: var(--secondary);
  margin: 2rem 0 1rem;
}

.legal-content h3 {
  color: var(--accent);
  margin: 1.5rem 0 0.75rem;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-content ul {
  color: var(--text-muted);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
}

/* POSTCODE CHECK */
.postcode-check {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.postcode-check input {
  flex: 1;
  min-width: 180px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
}

#delivery-status {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.status-ok {
  color: var(--success);
}

.status-err {
  color: #e74c3c;
}

/* QUICK-ADD ITEMS */
.quick-add-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.quick-add-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.quick-add-item .item-info {
  flex: 1;
}

.quick-add-item .item-info span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  background: var(--primary);
  border: 1px solid var(--border);
  color: var(--accent);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-input {
  width: 36px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 0.875rem;
}

/* SECTION HEADERS */
.menu-section-title {
  color: var(--secondary);
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--success);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
}

/* FOCUS VISIBLE */
*:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}
