@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

/* USP strip */
.usp-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 1.2rem; }

/* Prevent background scroll when consent pending */
.no-scroll { overflow: hidden; }
.usp { background: #fff; border: 1px solid #e9ecef; border-radius: 10px; padding: 0.8rem 1rem; display: flex; gap: 10px; align-items: center; justify-content: center; box-shadow: var(--soft-shadow); }
.usp-icon { color: var(--accent); font-weight: 700; }

/* Desktop hover effects for USP items */
@media (hover: hover) and (pointer: fine) and (min-width: 900px) {
  .usp { transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; cursor: default; }
  .usp:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 16px 40px rgba(0,0,0,0.12); background: #fffdf8; }
}

/* KMFC shop - global styles moved from index.html */
:root {
  --main-bg: #fff;
  --accent: #ff6f00;
  --wood: #c19a6b;
  --dark-bg: #0C0C0C;
  --text-dark: #0C0C0C;
  --text-light: #fff;
  --soft-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
  background: var(--main-bg);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Headings use a bold, condensed style akin to KFC branding */
h1, h2, h3, .feature-title, .menu-category-title { font-family: 'Oswald', 'Inter', sans-serif; letter-spacing: 0.2px; }
.feature-title { letter-spacing: 0.3px; }

header {
  background: var(--dark-bg);
  box-shadow: var(--soft-shadow);
  padding: 0;
}

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

.navbar nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  margin-right: 1rem;
}

.navbar .header-social-icon {
  flex-shrink: 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar img {
  height: 150px;
  background: transparent;
}

.header-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: transform 0.2s ease;
}

.header-social-icon:hover {
  transform: scale(1.1);
}

.header-social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.header-halal-icon {
  width: 55px;
  height: 55px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.header-insta-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.footer-insta-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  vertical-align: middle;
  margin-right: 0.3em;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
}

nav a.active { color: var(--accent); }
nav a:hover { color: #dddddd; }

/* Social icon in navbar */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-social-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* Inline halal icon in title */
.inline-halal-icon {
  height: 1.6em;
  width: auto;
  vertical-align: middle;
  margin: 0 0.1em;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.banner {
  background: url('../assets/banner.png') center/cover no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.banner-content {
  position: relative;
  z-index: 1;
  color: var(--text-light);
  text-align: center;
  max-width: 800px;
  padding: 0 1rem;
}
.banner-content h1 {
  font-size: 3rem;
  color: var(--text-light);
  text-align: center;
  letter-spacing: 0.2px;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* Parallax helper */
.banner { background-attachment: scroll; will-change: background-position; }

.cta-btn {
  background: var(--dark-bg);
  color: var(--text-light);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--soft-shadow);
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}
.cta-btn:hover {
  background: var(--accent);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 36px rgba(255, 111, 0, 0.35);
}

main {
  flex: 1 0 auto;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.feature { background: #fff; border-radius: 20px; box-shadow: var(--soft-shadow); padding: 2.5rem 2rem; text-align: center; transition: transform 0.25s ease, box-shadow 0.25s ease; cursor: pointer; }
.feature:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 16px 48px rgba(0,0,0,0.16); }

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature-icon .payment-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
.feature-icon .payment-icons img {
  width: 35px;
  height: 35px;
}

/* utility */
.icon-90 { width: 90px; height: 90px; }

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--dark-bg);
}
.feature-desc {
  font-size: 1.1rem;
  color: #333333;
  line-height: 1.5;
}

.about-section {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}
.about-section h2 {
  font-size: 2.2rem;
  color: var(--dark-bg);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.about-section p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #333333;
  max-width: 800px;
  margin: 0 auto;
}

footer {
  background: var(--dark-bg);
  color: var(--text-light);
  text-align: center;
  padding: 2rem 0;
  letter-spacing: 0.5px;
  font-size: 1rem;
  margin-top: auto;
}
footer a {
  color: var(--text-light);
  text-decoration: underline;
  transition: color 0.2s;
}
footer a:hover { color: #ffe0b2; }

/* Utilities */
.mb-16 { margin-bottom: 1.5rem; }
.icon-180 { width: 180px; height: 180px; }
.icon-90 { width: 90px; height: 90px; }
.icon-inline-24 { width: 24px; height: 24px; vertical-align: middle; }
.icon-inline-28 { width: 28px; height: 28px; vertical-align: middle; }
.ml-6 { margin-left: 6px; }
.ml-8 { margin-left: 8px; }
.mr-8 { margin-right: 8px; }
.icon-300 { width: 300px; height: 300px; }

/* Cookie Banner */
#cookie-banner[hidden] { display: none !important; }
#cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 9999;
  max-width: 720px;
  width: calc(100% - 32px);
  background: #ffffff;
  color: var(--text-dark);
  border: 1px solid #e9ecef;
  border-radius: 14px;
  box-shadow: 0 14px 50px rgba(0,0,0,0.15);
}
#cookie-banner .cookie-content { padding: 1.25rem 1.25rem; }
#cookie-banner p { margin: 0 0 0.75rem 0; }
#cookie-banner .cookie-header { display: flex; gap: 12px; align-items: center; margin-bottom: 0.5rem; }
#cookie-banner .cookie-icon { font-size: 1.4rem; line-height: 1; }
#cookie-banner .cookie-title { margin: 0; font-size: 1.05rem; color: var(--dark-bg); }
#cookie-banner .cookie-sub { margin: 2px 0 0 0; color: #6b7280; font-size: 0.9rem; }
#cookie-banner .cookie-text { color: #4b5563; margin-bottom: 0.85rem; }
#cookie-banner .cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
  width: 100%;
  max-width: 520px; /* center group */
  margin: 0 auto;   /* center horizontally */
}
#cookie-banner .cookie-actions .cta-btn,
#cookie-banner .cookie-actions .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: 52px; /* exact equal height */
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.2px;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  text-align: center;
}
/* Matching border widths so visual height is identical */
#cookie-banner .cookie-actions .cta-btn { border: 2px solid transparent; }
#cookie-banner .cookie-actions .btn-outline { border-width: 2px; }
#cookie-banner .cookie-actions .cta-btn {
  background: var(--accent);
  border: 2px solid var(--accent); /* match outline thickness */
  color: #fff;
}
#cookie-banner .cookie-actions .cta-btn:hover {
  filter: brightness(0.95);
}
#cookie-banner .cookie-actions .btn-outline {
  background: #fff;
  border: 2px solid #d1d5db;
  color: var(--dark-bg);
}
#cookie-banner .cookie-actions .btn-outline:hover {
  background: #fff8f1;
  border-color: #ffd2a6;
  color: var(--accent);
}
@media (max-width: 520px) {
  #cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
    transform: none;
  }
  
  #cookie-banner .cookie-actions { 
    gap: 8px;
    grid-template-columns: 1fr;
  }
  
  #cookie-banner .cookie-actions .cta-btn,
  #cookie-banner .cookie-actions .btn-outline {
    height: 48px;
    padding: 0 16px;
    width: 100%;
  }
  
  /* Mobile navbar improvements */
  .navbar {
    padding: 0.75rem;
  }
  
  .navbar img {
    height: 40px;
  }
  
  .navbar nav a {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
  }
  
  /* Mobile hero adjustments */
  .hero-section {
    padding: 2rem 0;
  }
  
  .hero-text h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .hero-cta-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Mobile section padding */
  .features,
  .popular-section,
  .reviews-section,
  .about-section {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
}

/* About section hover outline (desktop only) */
.about-section { border: 2px solid transparent; border-radius: 14px; padding: 1.2rem; transition: border-color 160ms ease, box-shadow 160ms ease; }
@media (hover: hover) and (pointer: fine) and (min-width: 900px) {
  .about-section:hover { border-color: var(--accent); box-shadow: 0 8px 28px rgba(255, 111, 0, 0.18); }
}

/* Footer Webvonk icon slightly larger */
.icon-inline-28 { width: 28px; height: 28px; vertical-align: middle; }

/* Visually match bezorging icon size */
.features .feature-icon img[src$="bezorging.svg"] { transform: scale(1.15); transform-origin: center; }
#cookie-banner a { color: var(--accent); text-decoration: underline; }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 4px; }

/* Features grid: force 3 across on large screens, stack on mobile */
@media (min-width: 1024px) {
  .features { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .features { grid-template-columns: 1fr; }
}

/* Ensure cookie banner buttons are same height */
#cookie-banner .cookie-actions .cta-btn,
#cookie-banner .cookie-actions .btn-outline {
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 160px; /* gelijk uiterlijk */
  text-align: center;
}

/* ==============================
   Bestellen layout (twee kolommen)
   ============================== */
.menu-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }

.menu-sidebar { position: sticky; top: 24px; height: fit-content; }
.sidebar-inner { background: #fff; border: 1px solid #e9ecef; border-radius: 16px; box-shadow: var(--soft-shadow); padding: 1rem; }
.sidebar-title { margin: 0 0 0.75rem 0; font-size: 1.1rem; color: var(--dark-bg); }
.sidebar-link { display: block; padding: 0.6rem 0.75rem; color: var(--dark-bg); text-decoration: none; border-radius: 10px; }
.sidebar-link:hover { background: #fff3e6; color: var(--accent); }

.menu-content { min-width: 0; }
.menu-category { margin-bottom: 2.5rem; }
.menu-category-title { font-size: 1.6rem; font-weight: 800; margin: 0 0 1rem 0; color: var(--dark-bg); }

/* Product grid/cards */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.product-card { background: #fff; border: 1px solid #e9ecef; border-radius: 16px; box-shadow: var(--soft-shadow); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }

.product-media { position: relative; aspect-ratio: 4 / 3; background: #fafafa; display: flex; align-items: center; justify-content: center; }
.product-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-ph { font-weight: 800; color: #d1d5db; font-size: 2rem; letter-spacing: 2px; }
.badge-soldout { position: absolute; left: 10px; top: 10px; background: #b91c1c; color: #fff; font-size: 0.8rem; padding: 4px 8px; border-radius: 999px; box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
/* Product number labels - inline style */
.product-number-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 4px 0 8px 0;
}

.product-number-label-inline {
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  box-shadow: 0 1px 3px rgba(255,111,0,0.3);
}

.product-body { padding: 0.9rem 1rem 1.1rem; }
.product-title { margin: 0 0 6px 0; font-size: 1.05rem; color: var(--dark-bg); }
.product-price { font-weight: 800; color: var(--accent); margin-bottom: 6px; }
.product-desc { margin: 0; color: #4b5563; font-size: 0.95rem; line-height: 1.4; }

/* Enhanced skeleton loading */
.skeleton { 
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 37%, #f3f4f6 63%); 
  background-size: 400% 100%; 
  animation: shimmer 1.4s ease infinite; 
  border-radius: 16px; 
  overflow: hidden;
}

.skeleton-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 37%, #f3f4f6 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: 16px 16px 0 0;
}

.skeleton-content {
  padding: 1rem;
}

.skeleton-title {
  height: 20px;
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 37%, #f3f4f6 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  width: 80%;
}

.skeleton-description {
  height: 16px;
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 37%, #f3f4f6 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: 4px;
  margin-bottom: 1rem;
  width: 100%;
}

.skeleton-price {
  height: 18px;
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 37%, #f3f4f6 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: 4px;
  width: 60%;
}

.products-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #6b7280;
}

.products-empty .empty-icon {
  margin-bottom: 1rem;
  color: #d1d5db;
}

.products-empty h3 {
  margin: 0 0 0.5rem 0;
  color: var(--text-dark);
  font-size: 1.25rem;
}

.products-empty p {
  margin: 0;
  font-size: 0.9rem;
}

@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }

/* Responsive voor bestelling layout */
@media (max-width: 1000px) {
  .menu-layout { grid-template-columns: 220px 1fr; gap: 16px; }
}
@media (max-width: 760px) {
  .menu-layout { grid-template-columns: 1fr; }
  .menu-sidebar { position: static; order: -1; }
}

@media (max-width: 900px) {
  .navbar { flex-direction: column; gap: 0.8rem; padding: 1rem 1.5rem; }
  .banner-content h1 { font-size: 2.5rem; }
  .features { grid-template-columns: 1fr; gap: 2rem; }
  .usp-strip { grid-template-columns: 1fr; }
  .feature { padding: 1.2rem; }
}

@media (max-width: 600px) {
  .banner-content h1 { font-size: 2rem; }
  .banner { min-height: 300px; }
  main { margin: 2rem auto; }
  .feature { padding: 2rem 1.5rem; }
}

/* ==============================
   Bestellen top toolbar + search
   ============================== */
.menu-toolbar { position: sticky; top: 0; z-index: 200; background: #ffffff; padding: 0.6rem 0; margin-bottom: 1rem; }
.toolbar-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.search-wrap { flex: 1 1 260px; }
#product-search { width: 100%; padding: 0.75rem 1rem; border: 1px solid #e5e7eb; border-radius: 999px; outline: none; box-shadow: 0 2px 10px rgba(0,0,0,0.04); font-size: 1rem; }
#product-search:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,111,0,0.15); }

.cat-nav { display: flex; gap: 8px; overflow: auto; padding-bottom: 4px; }
.cat-nav a { white-space: nowrap; text-decoration: none; color: var(--dark-bg); font-weight: 600; padding: 0.55rem 0.9rem; border: 1px solid #e5e7eb; border-radius: 999px; background: #fff; transition: all 0.15s ease; }
.cat-nav a:hover { color: var(--accent); border-color: #e5e7eb; background: #fff; }
.cat-nav a.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.options-section { margin-top: 14px; padding-top: 8px; border-top: 1px dashed #ececec; }
.option-group { margin-bottom: 14px; }
.option-title { font-weight: 800; color: var(--dark-bg); margin: 0 0 8px 0; font-family: 'Oswald','Inter',sans-serif; font-size: 1.05rem; letter-spacing: .2px; }

/* Dropdown styling for single-type options */
.option-dropdown {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 14px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.option-dropdown:hover {
  border-color: #ffd2a6;
  box-shadow: 0 6px 20px rgba(255,111,0,0.10);
  background-color: #fffdf8;
}

.option-dropdown:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,111,0,0.25);
  background-color: #fffaf3;
}

.option-dropdown option {
  padding: 8px 12px;
  font-weight: 600;
}

/* Text input styling for text-type options */
.option-text-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-bg);
  background-color: #ffffff;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.option-text-input:hover {
  border-color: #ffd2a6;
  box-shadow: 0 6px 20px rgba(255,111,0,0.10);
  background-color: #fffdf8;
}

.option-text-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,111,0,0.25);
  background-color: #fffaf3;
}

.option-text-input::placeholder {
  color: #6c757d;
  font-weight: 400;
}

.option-text-input.error {
  border-color: #dc3545;
  background-color: #fff5f5;
}

.option-text-input.error:focus {
  box-shadow: 0 0 0 3px rgba(220,53,69,0.25);
}

/* Multi-option row styling (no checkboxes, quantity-based) */
.multi-option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 14px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  margin-bottom: 8px;
}

.multi-option-row:hover {
  border-color: #ffd2a6;
  box-shadow: 0 6px 20px rgba(255,111,0,0.10);
  background: #fffdf8;
}

.multi-option-row.selected {
  border-color: var(--accent);
  background: #fffaf3;
  box-shadow: 0 6px 22px rgba(255,111,0,0.12);
}

.multi-option-row .option-label {
  flex: 1;
  color: #374151;
  font-weight: 600;
  line-height: 1.2;
}

.multi-option-row .qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}
.option-list { display: grid; gap: 10px; grid-template-columns: 1fr; }
.option-row { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; border: 1px solid #e9ecef; border-radius: 14px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; position: relative; }
.option-row:hover { border-color: #ffd2a6; box-shadow: 0 6px 20px rgba(255,111,0,0.10); background: #fffdf8; }
.option-row input { width: 20px; height: 20px; accent-color: var(--accent); flex: 0 0 auto; }
.option-row input:focus-visible { outline: 3px solid rgba(255,111,0,0.25); border-radius: 4px; }
.option-label { color: #374151; font-weight: 600; line-height: 1.2; flex: 1 1 auto; }
.option-badge { margin-left: auto; background: #fff3e6; color: var(--accent); font-weight: 700; font-size: .72rem; padding: 4px 8px; border-radius: 999px; border: 1px solid #ffd2a6; }
@media (min-width: 760px) {
  /* Keep options stacked under each other; no two-column layout */
  .option-list { grid-template-columns: 1fr; }
}

/* Highlight checked rows */
.option-row:has(input:checked) { border-color: var(--accent); background: #fffaf3; box-shadow: 0 6px 22px rgba(255,111,0,0.12); }

/* ==============================
   Reveal-on-scroll animations
   ============================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.reveal-in { opacity: 1; transform: translateY(0); }
/* Stagger utility via CSS variable --d (delay) */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; transition-delay: var(--d, 0ms); }
[data-reveal].in { opacity: 1; transform: none; }

/* ==============================
   Product Modal
   ============================== */
.modal[hidden] { display: none !important; }
.modal { position: fixed; inset: 0; z-index: 1000; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(1px); }
.modal-dialog { position: relative; z-index: 1; max-width: 920px; margin: 4vh auto; background: #fff; border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,0.25); padding: 0; display: flex; flex-direction: column; overflow: hidden; max-height: 92vh; }
.modal-dialog:has(.options-section) { margin: 3vh auto; max-height: 94vh; }
.modal-close { position: absolute; top: 10px; right: 12px; border: none; background: transparent; font-size: 28px; line-height: 1; cursor: pointer; color: #64748b; z-index: 10; }
.modal-close:hover { color: var(--accent); }
.modal-body { padding: 0; flex: 1; overflow: hidden; display: flex; flex-direction: column; }

/* Two-column layout inside modal */
.modal-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; flex: 1; overflow: hidden; }
.modal-visual { position: relative; background: #fff; overflow: hidden; }
.modal-visual .modal-media { width: 100%; height: 100%; min-height: 320px; background: #fff; display: flex; align-items: center; justify-content: center; }
.modal-visual .modal-media img { width: 100%; height: 100%; object-fit: contain; display: block; }
.modal-side { 
  padding: 28px; 
  background: #fff; 
  display: flex; 
  flex-direction: column; 
  justify-content: flex-start; 
  align-items: stretch; 
  gap: 10px; 
  overflow-y: auto; 
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,111,0,0.3) transparent;
}

/* Webkit scrollbar styling for modal */
.modal-side::-webkit-scrollbar {
  width: 6px;
}

.modal-side::-webkit-scrollbar-track {
  background: transparent;
}

.modal-side::-webkit-scrollbar-thumb {
  background: rgba(255,111,0,0.3);
  border-radius: 3px;
}

.modal-side::-webkit-scrollbar-thumb:hover {
  background: rgba(255,111,0,0.5);
}
.modal-side .modal-title { margin: 0 0 10px 0; font-size: 1.6rem; line-height: 1.3; color: var(--dark-bg); font-family: 'Oswald', 'Inter', sans-serif; }
.modal-side .modal-price { font-weight: 800; color: var(--accent); margin-bottom: 10px; font-size: 1.3rem; }
.modal-side .modal-desc { color: #4b5563; margin: 0 0 8px 0; }
/* Ensure CTA fills width and stays visible */
.modal-side > .btn-primary-orange { 
  width: 100%; 
  margin-top: auto; 
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  background: var(--accent);
  z-index: 5;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1), 0 6px 16px rgba(255,111,0,0.3);
}

/* Orange primary CTA to match brand */
.btn-primary-orange { background: var(--accent); color: #fff; border: none; padding: 14px 22px; border-radius: 999px; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; box-shadow: 0 6px 16px rgba(255,111,0,0.3); transition: transform .06s ease, box-shadow .2s ease, opacity .2s ease; }
.btn-primary-orange:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(255,111,0,0.35); }
.btn-primary-orange:active { transform: translateY(0); box-shadow: 0 6px 16px rgba(255,111,0,0.3); }
.btn-primary-orange[disabled] { opacity: .7; cursor: not-allowed; }

.soldout-note { margin-top: 8px; font-size: .92rem; color: var(--accent); font-weight: 600; }

@media (max-width: 900px) {
  .modal-content-grid { 
    grid-template-columns: 1fr; 
    display: flex;
    flex-direction: column;
  }
  .modal-visual { 
    flex-shrink: 0;
  }
  .modal-visual .modal-media { 
    min-height: 220px; 
  }
  .modal-side {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Sauce Modal Styles */
.sauce-modal .sauce-modal-content {
  padding: 1.5rem;
}

.sauce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.sauce-card, .drink-card {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
  min-height: auto;
}

.sauce-card:hover, .drink-card:hover {
  border-color: #ffd2a6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,111,0,0.15);
}

/* Sauce modal specific styling - smaller without images */
.sauce-modal .sauce-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}

.sauce-modal .sauce-card,
.sauce-modal .drink-card {
  padding: 0.75rem;
  text-align: center;
}

.sauce-modal .sauce-card h4,
.sauce-modal .drink-card h4 {
  font-size: 0.85rem;
  margin: 0 0 0.25rem 0;
}

.sauce-modal .sauce-card p,
.sauce-modal .drink-card p {
  font-size: 0.8rem;
  margin: 0 0 0.5rem 0;
}

/* Custom header buttons for sauce modal */
.sauce-modal-header-buttons {
  position: absolute;
  top: 10px;
  right: 12px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.modal-close-custom,
.modal-check-custom {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 700;
}

.modal-close-custom {
  background: rgba(0,0,0,0.1);
  color: #64748b;
  font-size: 28px;
  line-height: 1;
}

.modal-close-custom:hover {
  background: rgba(0,0,0,0.2);
  color: #374151;
}

.modal-check-custom {
  background: var(--accent);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(255,111,0,0.3);
}

.modal-check-custom:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(255,111,0,0.4);
}

/* Current customizations display */
.current-customizations {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem 0;
  font-size: 0.9rem;
  color: #6b7280;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 0.75rem;
  border-left: 3px solid var(--accent);
}

.current-customizations li {
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.current-customizations li:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.5rem;
  margin-bottom: 0.25rem;
}

.customize-product-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  display: block;
  margin: 1rem 0 0.5rem 0;
  transition: color 0.2s ease;
}

.customize-product-link:hover {
  color: #e65100;
  text-decoration: underline;
}

/* Customizations modal styling */
.customizations-modal-content {
  padding: 2rem;
  max-height: 80vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,111,0,0.3) transparent;
  will-change: scroll-position;
}

.customizations-modal-content::-webkit-scrollbar {
  width: 6px;
}

.customizations-modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.customizations-modal-content::-webkit-scrollbar-thumb {
  background: rgba(255,111,0,0.3);
  border-radius: 3px;
}

.customizations-modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255,111,0,0.5);
}

.customizations-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  flex: 1;
  overflow-y: auto;
}

.customization-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.customization-item:hover {
  border-color: #ffd2a6;
  box-shadow: 0 2px 8px rgba(255,111,0,0.1);
}

.customizations-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-shrink: 0;
  padding-top: 1rem;
  background: white;
  position: sticky;
  bottom: 0;
  z-index: 10;
  margin-top: auto;
  border-top: 1px solid #e5e7eb;
}

/* Infinite options styling */
.infinite-star {
  color: #dc2626;
  font-weight: 700;
  font-size: 1.1em;
}

.infinite-options-explanation {
  margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #991b1b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.infinite-options-explanation .infinite-star {
  font-size: 1em;
}

/* Desktop/laptop styling improvements for larger screens */
@media (min-width: 1024px) {
  /* Rode sterretje - beter zichtbaar op desktop */
  .infinite-star {
    color: #ef4444;
    font-weight: 800;
    font-size: 1.2em;
    text-shadow: 0 1px 2px rgba(239, 68, 68, 0.3);
    display: inline-block;
    animation: pulse-star 2s ease-in-out infinite;
  }
  
  @keyframes pulse-star {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }
  
  /* Pas product aan link - betere styling voor desktop */
  .customize-product-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0 0.5rem 0;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #fff3e6 0%, #ffedd5 100%);
    border: 2px solid #fed7aa;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(255, 111, 0, 0.1);
  }
  
  .customize-product-link:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--accent) 0%, #e65100 100%);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 111, 0, 0.3);
    text-decoration: none;
  }
  
  .customize-product-link::before {
    content: "⚙️";
    font-size: 1.1em;
  }
  
  /* Text input styling - verbeterd voor desktop */
  .option-text-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-bg);
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .option-text-input:hover {
    border-color: #fbbf24;
    box-shadow: 0 4px 16px rgba(255, 111, 0, 0.15);
    background-color: #fffbf5;
    transform: translateY(-1px);
  }
  
  .option-text-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 111, 0, 0.2), 0 4px 16px rgba(255, 111, 0, 0.15);
    background-color: #fffaf3;
    transform: translateY(-1px);
  }
  
  .option-text-input::placeholder {
    color: #9ca3af;
    font-weight: 500;
    font-style: italic;
  }
  
  /* Dropdown styling - verbeterd voor desktop */
  .option-dropdown {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 14px center;
    background-repeat: no-repeat;
    background-size: 18px;
    padding-right: 45px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .option-dropdown:hover {
    border-color: #fbbf24;
    box-shadow: 0 4px 16px rgba(255, 111, 0, 0.15);
    background-color: #fffbf5;
    transform: translateY(-1px);
  }
  
  .option-dropdown:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 111, 0, 0.2), 0 4px 16px rgba(255, 111, 0, 0.15);
    background-color: #fffaf3;
    transform: translateY(-1px);
  }
  
  /* Infinite options explanation - betere styling voor desktop */
  .infinite-options-explanation {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #fef2f2 0%, #fef7f7 100%);
    border: 2px solid #fca5a5;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #7f1d1d;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.1);
    font-weight: 600;
  }
  
  .infinite-options-explanation .infinite-star {
    font-size: 1.2em;
    animation: pulse-star 2s ease-in-out infinite;
  }
}

@media (max-width: 600px) {
  .sauce-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
  }
  
  .sauce-modal .sauce-modal-content {
    padding: 1rem;
  }
  
  /* Mobile header buttons positioning */
  .sauce-modal-header-buttons {
    top: 1rem;
    right: 1rem;
  }
  
  .modal-close-custom,
  .modal-check-custom {
    width: 44px;
    height: 44px;
  }
  
  .sauce-modal .sauce-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  
  /* Mobile customizations modal */
  .customizations-modal-content {
    padding: 1rem;
    max-height: 85vh;
  }
  
  .customization-item {
    padding: 0.75rem;
    gap: 0.75rem;
    flex-direction: column;
    text-align: center;
  }
  
  .customizations-actions {
    padding-top: 0.75rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .customizations-actions button {
    width: 100%;
    padding: 1rem;
  }
  
  /* Mobile infinite options explanation */
  .infinite-options-explanation {
    margin-top: 0.5rem;
    padding: 0.5rem;
    font-size: 0.8rem;
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
  }
}

@media (max-width: 760px) {
  .modal-dialog { margin: 10vh 16px; }
}

/* ==============================
   Closed alert (dismissible)
   ============================== */
.site-alert[hidden] { display: none !important; }
.site-alert { position: fixed; inset: 0; z-index: 1100; display: flex; align-items: flex-start; justify-content: center; padding: 20px; }

/* Inline alert styling (for bestellen.html) */
.site-alert-inline[hidden] { display: none !important; }
.site-alert-inline { 
  margin: 20px 0; 
  display: block; 
}

.site-alert__box { position: relative; max-width: 760px; width: 100%; background: #fff; border-radius: 16px; box-shadow: 0 30px 80px rgba(0,0,0,0.25); padding: 20px 20px 18px 20px; border-left: 6px solid var(--accent); }
.site-alert__title { margin: 0 0 6px 0; font-size: 1.2rem; color: var(--dark-bg); font-family: 'Oswald','Inter',sans-serif; }
.site-alert__text { margin: 0; color: #374151; }
.alert-close { position: absolute; top: 10px; right: 12px; border: none; background: transparent; font-size: 24px; cursor: pointer; color: #64748b; }
.alert-close:hover { color: var(--accent); }

/* ==============================
   Cart (winkelwagen) drawer + FAB
   ============================== */
.cart-fab {
  position: fixed !important;
  right: 20px;
  bottom: 20px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ff6f00 0%, #e65100 100%);
  border: none;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(255,111,0,0.4), 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999 !important;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  isolation: isolate;
  padding: 0;
}
.cart-fab:hover { 
  transform: translateY(-3px) scale(1.05); 
  box-shadow: 0 16px 48px rgba(255, 111, 0, 0.35), 0 4px 16px rgba(0,0,0,0.15); 
}
.cart-fab:active {
  transform: translateY(-1px) scale(1.02);
}
.cart-fab svg { 
  width: 24px; 
  height: 24px; 
  color: #fff;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  border-radius: 50%;
  min-width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  border: 3px solid #fff;
  box-shadow: 0 3px 12px rgba(220, 38, 38, 0.4);
  line-height: 1;
  padding: 0 4px;
}

.cart-drawer[hidden] { display: none !important; }
.cart-drawer { position: fixed; inset: 0; z-index: 1200; }
.cart-backdrop { 
  position: absolute; 
  inset: 0; 
  background: rgba(17,24,39,0.6); 
  backdrop-filter: blur(8px) saturate(1.2); 
  opacity: 0; 
  transition: opacity .35s cubic-bezier(0.4, 0, 0.2, 1); 
}
.cart-panel { 
  position: absolute; 
  top: 0; 
  right: 0; 
  height: 100%; 
  width: min(440px, 95vw); 
  background: linear-gradient(180deg, #ffffff 0%, #fefefe 100%); 
  display: flex; 
  flex-direction: column; 
  border-radius: 20px 0 0 20px; 
  box-shadow: -20px 0 80px rgba(0,0,0,0.15), -8px 0 32px rgba(0,0,0,0.1); 
  overflow: hidden; 
  transform: translateX(100%); 
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1); 
}
.cart-drawer.is-open .cart-backdrop { opacity: 1; }
.cart-drawer.is-open .cart-panel { transform: translateX(0); }
.cart-header { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 24px 24px 20px 24px; 
  border-bottom: 2px solid #f1f5f9; 
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%); 
  position: sticky; 
  top: 0; 
  z-index: 1; 
}
.cart-title-wrap { 
  display: inline-flex; 
  align-items: center; 
  gap: 12px; 
}
.cart-header h3 { 
  margin: 0; 
  font-size: 1.5rem; 
  font-family: 'Oswald','Inter',sans-serif; 
  color: var(--text-dark); 
  letter-spacing: 0.3px; 
  font-weight: 700;
}
.cart-count-badge { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  min-width: 32px; 
  height: 32px; 
  padding: 0 12px; 
  border-radius: 999px; 
  font-weight: 800; 
  font-size: 0.9rem; 
  background: linear-gradient(135deg, #fff3e6 0%, #fef3e2 100%); 
  color: var(--accent); 
  border: 2px solid #ffd2a6; 
  box-shadow: 0 2px 8px rgba(255,111,0,0.15), inset 0 1px 0 rgba(255,255,255,0.8); 
}
.cart-close { 
  border: none; 
  background: #f8fafc; 
  font-size: 24px; 
  cursor: pointer; 
  color: #64748b; 
  border-radius: 12px; 
  padding: 8px 12px; 
  transition: all .25s ease; 
  font-weight: 300;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-close:hover { 
  color: #dc2626; 
  background: #fef2f2; 
  transform: scale(1.05);
}
.cart-items { 
  flex: 1 1 auto; 
  overflow-y: auto; 
  overflow-x: hidden;
  padding: 16px 20px 20px 20px; 
  display: flex;
  flex-direction: column;
  gap: 16px; 
  background: transparent;
  max-height: calc(100vh - 200px); /* Ensure scrolling when many items */
}
.cart-empty { 
  background: #f8fafc; 
  border: 2px dashed #cbd5e1; 
  border-radius: 16px; 
  padding: 32px 24px; 
  text-align: center; 
  margin: 20px 0;
}
.cart-empty p {
  color: #64748b;
  font-size: 1.1rem;
  margin: 0 0 16px 0;
  font-weight: 500;
}
.cart-empty .btn-plain { 
  transition: all .25s ease; 
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
}
.cart-empty .btn-plain:hover { 
  transform: translateY(-2px); 
  background: #e65100; 
  box-shadow: 0 8px 24px rgba(255,111,0,0.3); 
}
.cart-item { 
  background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%); 
  border: 2px solid #f1f5f9; 
  border-radius: 20px; 
  padding: 16px; 
  display: grid; 
  grid-template-columns: 1fr auto; 
  gap: 12px; 
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1); 
  position: relative;
  overflow: hidden;
  flex-shrink: 0; /* Prevent items from shrinking */
  min-height: 80px; /* Minimum height to maintain readability */
}
.cart-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, #e65100 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.cart-item:hover { 
  border-color: #ffd2a6; 
  box-shadow: 0 12px 32px rgba(255,111,0,0.15), 0 4px 16px rgba(0,0,0,0.1); 
  transform: translateY(-2px); 
}
.cart-item:hover::before {
  opacity: 1;
}
.cart-item-title { 
  margin: 0 0 4px 0; 
  font-weight: 700; 
  color: var(--text-dark); 
  letter-spacing: .3px; 
  font-size: 1rem; 
  line-height: 1.3;
}
.cart-item-desc { 
  margin: 0; 
  color: #64748b; 
  font-size: 0.9rem; 
  line-height: 1.4; 
  font-weight: 500;
}
.cart-item-right { 
  display: grid; 
  align-content: start; 
  justify-items: end; 
  gap: 8px; 
}
.cart-line-total { 
  font-weight: 800; 
  color: var(--accent); 
  font-size: 1.1rem; 
  text-shadow: 0 1px 2px rgba(255,111,0,0.2);
}
.qty { 
  display: inline-flex; 
  align-items: center; 
  border: 2px solid #e2e8f0; 
  border-radius: 14px; 
  overflow: hidden; 
  background: #ffffff; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all .25s ease;
}
.qty:hover {
  border-color: #ffd2a6;
  box-shadow: 0 4px 12px rgba(255,111,0,0.15);
}
.qty button { 
  background: #f8fafc; 
  border: none; 
  width: 32px; 
  height: 32px; 
  cursor: pointer; 
  font-weight: 700; 
  color: #475569; 
  transition: all .2s ease; 
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.qty button:hover { 
  background: linear-gradient(135deg, #fff3e6 0%, #fef3e2 100%); 
  color: var(--accent); 
  transform: scale(1.1);
}
.qty button:active {
  transform: scale(0.95);
}
.qty input { 
  width: 40px; 
  text-align: center; 
  border: none; 
  outline: none; 
  font-weight: 700; 
  color: #1e293b; 
  background: transparent;
  font-size: 0.95rem;
}
.cart-footer { 
  border-top: 3px solid #f1f5f9; 
  padding: 20px 24px; 
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%); 
  position: sticky; 
  bottom: 0; 
  z-index: 1; 
  box-shadow: 0 -12px 32px rgba(0,0,0,0.08), 0 -4px 16px rgba(0,0,0,0.04); 
}
.cart-total-row { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  margin-bottom: 16px; 
  font-size: 1.1rem; 
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}
.cart-total-row span {
  font-weight: 600;
  color: var(--text-dark);
}
.cart-total-row strong {
  font-size: 1.3rem;
  text-shadow: 0 1px 2px rgba(255,111,0,0.2);
}
.cart-actions {
  margin-top: 16px;
  display: flex;
  justify-content: stretch;
}
.cart-actions .cta-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, #e65100 100%);
  box-shadow: 0 6px 20px rgba(255,111,0,0.3);
  transition: all .3s ease;
}
.cart-actions .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,111,0,0.4);
}
/* cart checkout actions removed */

/* payment note removed */

/* Modal: product qty control */
.product-qty { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; }
.product-qty .qty { border-radius: 12px; }

/* ==============================
   Button styles for cart actions
   ============================== */
.btn-ghost { background: rgba(255,111,0,0.08); color: var(--accent); border: 1px solid rgba(255,111,0,0.25); padding: 8px 12px; border-radius: 10px; font-weight: 700; }
.btn-ghost:hover { background: rgba(255,111,0,0.12); }
.btn-plain { background: transparent; color: #374151; border: 1px solid #e5e7eb; padding: 8px 12px; border-radius: 10px; font-weight: 700; }
.btn-plain:hover { border-color: #d1d5db; }
.btn-danger { background: #fff3e6; color: var(--accent); border: 1px solid #ffd2a6; padding: 8px 12px; border-radius: 10px; font-weight: 700; }
.btn-danger:hover { background: #fff7f0; }

/* Compact icon-only button (for inline actions like trash next to qty) */
.icon-btn { background: transparent; border: none; width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; cursor: pointer; }
.icon-btn:hover { background: #fff7f0; }
.icon-btn img { width: 18px; height: 18px; display: block; }

/* checkout panels removed */

/* Step actions like screenshot */
/* removed disabled/btn-outline styles for checkout */

/* ==============================
   New Homepage Styles - Exact Match
   ============================== */

/* Hero Section */
.hero-section {
  background: #fff;
  padding: 3rem 0;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 2rem 0;
  line-height: 1.2;
}

.hero-cta-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-cta-btn:hover {
  background: #e55a00;
  transform: translateY(-2px);
}

.menu-link {
  display: block;
  margin-top: 12px;
  margin-left: 4px;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
  text-align: left;
}

.menu-link:hover {
  color: #e55a00;
  text-decoration: underline;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Story Section */
.story-section {
  background: #fff;
  padding: 4rem 0;
}

.story-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.story-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1.5rem 0;
}

.story-text p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Popular Choices Section */
.popular-choices {
  background: #fff;
  padding: 4rem 0;
}

.popular-choices h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  margin: 0 0 2rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.choices-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.choice-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.choice-card:hover {
  transform: translateY(-4px);
}

.choice-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.choice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choice-info {
  padding: 1.5rem;
}

.choice-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
}

.choice-info .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.5rem 0;
}

.choice-info .description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

/* Reviews Section */
.reviews-section {
  background: #fff;
  padding: 4rem 0;
}

.reviews-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  margin: 0 0 2rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.review-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.reviewer-info h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.reviewer-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
}

.review-text p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0 0 0.5rem 0;
}

.review-text p:last-child {
  margin-bottom: 0;
}

.review-image {
  margin-top: 1rem;
}

.review-image img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
}

a[href*="google.com/maps"] {
  text-decoration: none !important;
}

a[href*="google.com/maps"]:hover {
  text-decoration: none !important;
}

.reviews-cta {
  display: block;
  margin: 2rem auto 0;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.reviews-cta:hover {
  background: #e55a00;
  transform: translateY(-2px);
  text-decoration: none !important;
}

/* Image zoom modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-modal.active {
  opacity: 1;
  visibility: visible;
}

.image-modal-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.image-modal.active .image-modal-content {
  transform: scale(1);
}

.image-modal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
  position: absolute;
  top: -40px;
  right: -40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  transition: all 0.3s ease;
}

.image-modal-close:hover {
  background: white;
  transform: scale(1.1);
}

/* Clickable images styling - only for review images */
.review-image img {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Subtle hover effect for hero image (no background, only actual content) */
.hero-image img {
  transition: transform 0.2s ease;
  cursor: default;
}

.hero-image img:hover {
  transform: scale(1.01);
}

/* Story image - no hover effect */
.story-image img {
  cursor: default;
}

/* Partial star for 4.9 rating */
.partial-star {
  position: relative;
  display: inline-block;
}

.partial-star::after {
  content: '⭐';
  position: absolute;
  left: 0;
  top: 0;
  width: 90%;
  overflow: hidden;
  color: #ffc107;
}

.partial-star {
  color: #e0e0e0;
}

/* Enhanced reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms ease, transform 800ms ease;
}

.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for data-reveal elements */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
  transition-delay: var(--d, 0ms);
}

[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* Hero section animations */
.hero-section .hero-text h1 {
  animation: slideInLeft 1s ease-out;
}

.hero-section .hero-cta-btn {
  animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-section .menu-link {
  animation: slideInLeft 1s ease-out 0.5s both;
}

.hero-section .hero-image {
  animation: slideInRight 1s ease-out 0.2s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Choice cards hover effects */
.choice-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choice-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Review cards enhanced styling */
.review-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .navbar nav {
    gap: 1.5rem;
  }
  
  /* Mobile logo section */
  .logo-section {
    gap: 0.75rem;
  }
  
  .header-social-icons {
    flex-direction: row;
    gap: 8px;
  }
  
  .header-halal-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }
  
  .header-insta-icon {
    width: 20px;
    height: 20px;
  }
  
  .hero-content,
  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-text {
    order: 2;
  }
  
  .hero-image {
    order: 1;
  }
  
  .choices-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-container {
    grid-template-columns: 1fr;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  /* Disable complex animations on mobile for performance */
  .hero-section .hero-text h1,
  .hero-section .hero-cta-btn,
  .hero-section .menu-link,
  .hero-section .hero-image {
    animation: none;
  }
  
  /* Better mobile layout for products */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .product-card {
    padding: 1rem;
  }
  
  .product-card h3 {
    font-size: 1.2rem;
  }
  
  /* Mobile cart */
  .cart-panel {
    width: 100vw;
    border-radius: 0;
  }
  
  .cart-header {
    padding: 20px 16px 16px 16px;
  }
  
  .cart-items {
    padding: 12px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .cart-footer {
    padding: 16px;
  }
  
  .cart-fab {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
    position: fixed !important;
    z-index: 9999 !important;
  }
  
  .cart-fab img {
    width: 24px;
    height: 24px;
  }
  
  .cart-count {
    min-width: 22px;
    height: 22px;
    font-size: 0.7rem;
    top: -4px;
    right: -4px;
  }
  
  /* Mobile modal - FIXED */
  .modal {
    padding: 0;
  }
  
  .modal-dialog {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    margin: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  
  .modal-body {
    padding: 0;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .modal-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
    background: rgba(0,0,0,0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Mobile features section */
  .features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature {
    text-align: center;
  }
  
  /* Mobile popular choices */
  .popular-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .popular-item {
    padding: 1.5rem;
  }
  
  .popular-item h3 {
    font-size: 1.3rem;
  }
  
  /* Mobile reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  /* Mobile about section */
  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .about-text {
    order: 2;
  }
  
  .about-image {
    order: 1;
  }
  
  /* Mobile menu toolbar - FIXED */
  .menu-toolbar {
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .toolbar-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .search-wrap {
    width: 100%;
  }
  
  .search-wrap input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px; /* Prevents zoom on iOS */
    border-radius: 8px;
  }
  
  .cat-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .cat-nav::-webkit-scrollbar {
    display: none;
  }
  
  .cat-nav .cat-btn {
    white-space: nowrap;
    min-width: auto;
    padding: 8px 16px;
    font-size: 14px;
  }
  
  /* Mobile product grid - IMPROVED */
  .menu-content {
    padding: 1rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .product-card {
    padding: 1rem;
    border-radius: 12px;
  }
  
  .product-card h3 {
    font-size: 1.1rem;
    line-height: 1.3;
  }
  
  .product-card .product-price {
    font-size: 1rem;
    font-weight: 700;
  }
  
  /* Mobile product options in modal */
  .product-options {
    margin: 1rem 0;
  }
  
  .option-group {
    margin-bottom: 1.5rem;
  }
  
  .option-group h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .option-item {
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 8px;
  }
  
  .option-item label {
    font-size: 14px;
    line-height: 1.4;
  }
  
  /* Mobile quantity controls */
  .quantity-controls {
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
  }
  
  .qty-btn {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  
  .qty-display {
    font-size: 18px;
    min-width: 60px;
  }
  
  /* Mobile action buttons */
  .modal-actions {
    padding: 1rem;
    background: white;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
  }
  
  .modal-actions .cta-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
  }
}

/* ==============================
   FAQ Section Styles - GEO Optimized
   ============================== */
.faq-section {
  background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
  padding: 4rem 0;
  border-top: 1px solid #e2e8f0;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-header h2 {
  font-size: 2rem;
  font-family: 'Oswald', 'Inter', sans-serif;
  color: var(--dark-bg);
  margin: 0 0 0 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.faq-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,111,0,0.12);
  border-color: #ffd2a6;
}

.faq-question {
  font-size: 1.3rem;
  font-family: 'Oswald', 'Inter', sans-serif;
  color: var(--dark-bg);
  margin: 0 0 1rem 0;
  font-weight: 600;
  line-height: 1.3;
}

.faq-answer {
  color: #4b5563;
  line-height: 1.6;
}

.faq-answer p {
  margin: 0 0 1rem 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--accent);
  font-weight: 700;
}

.faq-answer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-cta {
  text-align: left;
  margin-top: 3rem;
  padding: 2rem;
  max-width: 600px;
}

.faq-cta p {
  margin: 0;
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.6;
}

.cta-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(255,111,0,0.1);
  transition: all 0.2s ease;
}

.cta-link:hover {
  background: rgba(255,111,0,0.2);
  text-decoration: none;
}

/* Mobile FAQ Styles */
@media (max-width: 768px) {
  .faq-section {
    padding: 2rem 0;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .faq-item {
    padding: 1.5rem;
  }
  
  .faq-question {
    font-size: 1.2rem;
  }
  
  .faq-cta {
    margin-top: 2rem;
    padding: 1.5rem;
  }
}

/* ==============================
   Contact Page Styles
   ============================== */

.contact-section {
  background: #fff;
  padding: 4rem 0;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1.5rem 0;
}

.contact-info p {
  color: #666;
  line-height: 1.6;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-details {
  display: grid;
  gap: 1.5rem;
}

.contact-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
}

.contact-item p {
  margin: 0;
  color: #666;
  line-height: 1.5;
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-form-wrapper {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1.5rem 0;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.1);
}

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

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: #f0f9ff;
  border: 1px solid #bfdbfe;
}

.form-status.success {
  background: #f0f9ff;
  border: 1px solid #22c55e;
  color: #15803d;
}

.form-status.error {
  background: #fef2f2;
  border: 1px solid #ef4444;
  color: #dc2626;
}

.btn-loading {
  opacity: 0.7;
}

.map-section {
  background: #f8f9fa;
  padding: 4rem 0;
  text-align: center;
}

.map-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 2rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.map-container {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  display: block;
}

.map-placeholder {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder p {
  font-size: 1.2rem;
  color: #666;
  margin: 0 0 1rem 0;
}

.map-link {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.map-link:hover {
  background: #e55a00;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Simple header with black text */
.simple-header {
  padding: 2rem 0;
  text-align: center;
  background: #fff;
}

.simple-header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

/* Screen reader only class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Search wrapper improvements */
.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-clear {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #6b7280;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.search-clear:hover {
  background: #f3f4f6;
  color: var(--accent);
}

.search-clear:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Mobile search bar styling */
.mobile-search-wrap {
  display: none; /* Hidden by default (desktop) */
  position: relative;
  margin-top: 1rem;
}

.mobile-search-wrap input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  outline: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  font-size: 16px; /* Prevents zoom on iOS */
  background: #fff;
}

.mobile-search-wrap input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.1);
}

.mobile-search-wrap .search-clear {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-search-wrap .search-clear:hover {
  background: #f3f4f6;
  color: #374151;
}

/* Enhanced Mobile Optimization for Bestellen Page */
@media (max-width: 768px) {
  /* Show mobile search bar */
  .mobile-search-wrap {
    display: block;
  }
  
  /* Hide search from toolbar on mobile */
  .menu-toolbar .search-wrap {
    display: none;
  }
  
  /* Mobile-first improvements */
  body {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Improved menu toolbar for mobile */
  .menu-toolbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--main-bg);
    border-bottom: 1px solid #e9ecef;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .toolbar-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .search-wrap {
    position: relative;
    width: 100%;
  }
  
  .search-wrap input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    font-size: 16px; /* Prevents zoom on iOS */
    border-radius: 8px;
    border: 2px solid #e9ecef;
    background: #fff;
  }
  
  .search-wrap input:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.1);
  }
  
  /* Category navigation for mobile */
  .cat-nav {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .cat-nav::-webkit-scrollbar {
    display: none;
  }
  
  .cat-nav a {
    white-space: nowrap;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: fit-content;
  }
  
  .cat-nav a.active,
  .cat-nav a:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
  }
  
  /* Product grid mobile optimization */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
  }
  
  .product-card:active {
    transform: scale(0.98);
  }
  
  .product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .product-card-content {
    padding: 1rem;
  }
  
  .product-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
  }
  
  .product-card p {
    margin: 0 0 1rem 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .product-price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
  }
  
  /* Cart FAB mobile optimization */
  .cart-fab {
    position: fixed !important;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6f00 0%, #e65100 100%);
    border: none;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(255, 111, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999 !important;
    transition: all 0.3s ease;
  }
  
  .cart-fab:active {
    transform: scale(0.95);
  }
  
  .cart-fab img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
  }
  
  .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid white;
  }
  
  /* Cart drawer mobile optimization */
  .cart-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: flex-end;
    touch-action: none;
  }
  
  .cart-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
  }
  
  .cart-panel {
    background: white;
    width: 100%;
    max-height: 80vh;
    border-radius: 20px 20px 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  
  .cart-drawer:not([hidden]) .cart-panel {
    transform: translateY(0);
  }
  
  .cart-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .cart-title-wrap h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
  }
  
  .cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: #6b7280;
  }
  
  .cart-items {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: calc(100vh - 150px);
  }
  
  .cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
  }
  
  .cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  .cart-line-total {
    font-weight: 700;
    color: var(--accent);
  }
  
  .cart-actions button {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  
  .cart-actions button:active {
    background: #e55a00;
  }
  
  /* Modal mobile optimization */
  .modal-dialog {
    margin: 0;
    max-height: 100vh;
    overflow: hidden;
    border-radius: 0;
  }
  
  .modal-body {
    padding: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .modal-content-grid {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
  }
  
  .modal-visual {
    flex-shrink: 0;
    margin-bottom: 0;
  }
  
  .modal-media {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .modal-side {
    padding: 1rem;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
  }
  
  .modal-info h2 {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
  }
  
  .modal-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
  }
  
  .modal-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  /* Options mobile styling */
  .option-list {
    margin-bottom: 1.5rem;
  }
  
  .option-row {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  
  .option-row:active {
    background: #e9ecef;
  }
  
  .option-row input[type="radio"] {
    margin-right: 1rem;
    transform: scale(1.2);
  }
  
  .option-label {
    flex: 1;
    font-weight: 500;
  }
  
  .option-badge {
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  /* Action buttons mobile - sticky at bottom */
  .modal-side > .btn-primary-orange {
    margin-top: auto;
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    background: var(--accent);
    z-index: 5;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1), 0 6px 16px rgba(255,111,0,0.3);
  }
  
  .modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    background: white;
    padding-top: 1rem;
    z-index: 5;
  }
  
  .modal-actions button {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .btn-outline {
    background: white;
    color: var(--text-dark);
    border: 2px solid #e9ecef;
  }
  
  .btn-outline:active {
    background: #f8f9fa;
  }
  
  .cta-btn {
    background: var(--accent);
    color: white;
  }
  
  .cta-btn:active {
    background: #e55a00;
  }
  
  /* Enhanced mobile touch targets */
  .product-card {
    min-height: 320px;
    touch-action: manipulation;
  }
  
  .product-card-content {
    padding: 1.25rem;
  }
  
  .product-card h3 {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  
  .product-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  /* Better mobile empty state */
  .products-empty {
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .products-empty h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .products-empty p {
    font-size: 1rem;
    color: #6b7280;
  }
  
  /* Mobile-friendly status section */
  .about-section {
    margin: 1rem;
    padding: 1.25rem;
  }
  
  /* Improved mobile footer */
  footer {
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
  }
  
  footer p {
    margin: 0.5rem 0;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    padding: 0 0.5rem;
  }
  
  .menu-toolbar {
    padding: 0.75rem;
  }
  
  .cart-fab {
    bottom: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
  }
  
  .modal-dialog {
    margin: 0.5rem;
  }
  
  /* Better mobile navbar */
  .navbar {
    padding: 0.75rem 1rem;
  }
  
  .navbar img {
    height: 60px;
  }
  
  nav a {
    font-size: 1rem;
    margin: 0 0.5rem;
  }
  
  /* Improved mobile header */
  .simple-header {
    padding: 1rem;
  }
  
  .simple-header h1 {
    font-size: 1.75rem;
  }
}

/* Contact page responsive */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .map-container iframe {
    height: 300px;
  }
  
  .map-placeholder {
    padding: 2rem 1rem;
  }
  
  .simple-header h1 {
    font-size: 2rem;
  }
}

/* Busy Mode Notification */
.busy-notification {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem auto;
  max-width: 1200px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.busy-notification[hidden] {
  display: none !important;
}

.busy-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.busy-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.busy-text strong {
  display: block;
  color: #856404;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.busy-text p {
  margin: 0;
  color: #6c5700;
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .busy-notification {
    margin: 0.5rem;
    padding: 0.75rem;
  }
  
  .busy-content {
    gap: 0.5rem;
  }
  
  .busy-icon {
    font-size: 1.1rem;
  }
  
  .busy-text strong {
    font-size: 0.9rem;
  }
  
  .busy-text p {
    font-size: 0.85rem;
  }
}

/* Product Customizations Styles */
.customizations-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.customizations-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.customizations-grid {
  display: grid;
  gap: 1rem;
}

.customization-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  background: #fff;
  transition: all 0.2s ease;
}

.customization-item:hover {
  border-color: #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.customization-photo {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.customization-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.customization-photo:not(:has(img)) {
  font-size: 1.5rem;
  color: #6b7280;
}

.customization-content {
  flex: 1;
  min-width: 0;
}

.customization-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.customization-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.customization-btn {
  padding: 0.5rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  background: #fff;
  color: #6b7280;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.customization-btn:hover {
  border-color: #ddd;
  transform: translateY(-1px);
}

.remove-btn.active {
  background: #dc2626;
  border-color: #dc2626;
  color: #fff;
}

.remove-btn.active:hover {
  background: #b91c1c;
  border-color: #b91c1c;
}

.extra-btn.active {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #fff;
}

.extra-btn.active:hover {
  background: #d97706;
  border-color: #d97706;
}

/* Cart customizations styling */
.cart-item-customizations {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  font-size: 0.85rem;
}

.cart-item-customizations li {
  padding: 0.25rem 0;
  color: #6b7280;
}

.customization-remove {
  color: #dc2626 !important;
}

.customization-extra {
  color: #f59e0b !important;
}

@media (max-width: 768px) {
  .customizations-grid {
    gap: 0.75rem;
  }
  
  .customization-item {
    padding: 0.75rem;
    gap: 0.5rem;
  }
  
  .customization-photo {
    width: 50px;
    height: 50px;
  }
  
  .customization-photo:not(:has(img)) {
    font-size: 1.25rem;
  }
  
  .customization-name {
    font-size: 0.9rem;
  }
  
  .customization-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }
}
