/* =========================================================
   ASSOS — Shared stylesheet
   Dark theme with red accents, inspired by the Assos logo
   ========================================================= */

:root {
  --bg: #0c0c0e;
  --bg-soft: #131316;
  --bg-card: #19191d;
  --bg-card-alt: #1f1f24;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f5f4;
  --text-muted: #a7a7ad;
  --text-faint: #707076;
  --red: #e3271e;
  --red-bright: #ff4338;
  --red-dim: #8c1813;
  --gold: #f2b705;
  --radius: 14px;
  --max-width: 1180px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   Top notice bar (optional small strip)
   ========================================================= */
.top-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  padding: 7px 16px;
  letter-spacing: 0.04em;
}

.top-bar strong {
  color: var(--red-bright);
  font-weight: 600;
}

/* =========================================================
   Navigation
   ========================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12, 12, 14, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.nav-logo img {
  height: 64px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  position: relative;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--bg-card-alt);
}

.nav-cta {
  background: var(--red);
  color: #fff !important;
  font-weight: 600;
  padding: 10px 22px !important;
}

.nav-cta:hover {
  background: var(--red-bright);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red-bright);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--red-bright);
  color: var(--red-bright);
}

.btn-block {
  width: 100%;
}

/* =========================================================
   Hero (video)
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 10, 0.55) 0%,
    rgba(8, 8, 10, 0.35) 40%,
    rgba(8, 8, 10, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-logo {
  width: clamp(160px, 28vw, 280px);
  margin: 0 auto 18px;
  filter: drop-shadow(0 10px 40px rgba(227, 39, 30, 0.35));
}

.hero-content .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  color: var(--red-bright);
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 16px;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245, 245, 244, 0.85);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero-scroll span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--red-bright);
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { opacity: 0; }
}

/* =========================================================
   Sections
   ========================================================= */
section {
  padding: 90px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  color: var(--red-bright);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-alt {
  background: var(--bg-soft);
}

/* =========================================================
   Info cards / grid
   ========================================================= */
.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 39, 30, 0.35);
}

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(227, 39, 30, 0.12);
  color: var(--red-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* =========================================================
   Opening hours table
   ========================================================= */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours-table tr {
  border-bottom: 1px solid var(--border);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 16px 24px;
  font-size: 1rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text-muted);
}

.hours-table tr.closed td:last-child {
  color: var(--red-bright);
  font-weight: 600;
}

.hours-table tr.today {
  background: rgba(227, 39, 30, 0.08);
}

.hours-table tr.today td {
  color: var(--text);
}

/* =========================================================
   Gallery
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}

.gallery img:hover {
  transform: scale(1.03);
}

/* =========================================================
   Menu page
   ========================================================= */
.menu-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: flex-start;
}

.menu-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.menu-chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.menu-chip:hover {
  color: var(--text);
  border-color: rgba(227, 39, 30, 0.4);
}

.menu-chip.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.menu-category {
  margin-bottom: 44px;
}

.menu-category h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-category h3 .cat-icon {
  color: var(--red-bright);
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
}

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

.menu-item-info {
  display: flex;
  flex-direction: column;
}

.menu-item-info .name {
  font-weight: 600;
  font-size: 1.02rem;
}

.menu-item-info .desc {
  color: var(--text-faint);
  font-size: 0.85rem;
  margin-top: 2px;
}

.menu-item-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.menu-item-price {
  font-weight: 700;
  color: var(--red-bright);
  font-size: 1.05rem;
  min-width: 64px;
  text-align: right;
}

.add-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--bg-card-alt);
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}

.add-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* =========================================================
   Takeaway cart (sticky sidebar)
   ========================================================= */
.cart {
  position: sticky;
  top: 96px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.cart h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.cart .cart-sub {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 320px;
  overflow-y: auto;
  margin-bottom: 18px;
}

.cart-empty {
  color: var(--text-faint);
  font-size: 0.92rem;
  text-align: center;
  padding: 30px 0;
  border: 1px dashed var(--border);
  border-radius: 10px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.92rem;
}

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

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-qty button {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-card-alt);
  color: var(--text);
  cursor: pointer;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-qty button:hover {
  border-color: var(--red-bright);
  color: var(--red-bright);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 16px;
}

.cart-total .amount {
  color: var(--red-bright);
}

.cart-note {
  font-size: 0.8rem;
  color: var(--text-faint);
  text-align: center;
  margin-top: 14px;
}

/* =========================================================
   Reviews
   ========================================================= */
.review-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
  text-align: center;
}

.review-score {
  font-size: 3.4rem;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
}

.review-stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 4px;
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

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

.review-meta {
  color: var(--text-faint);
  font-size: 0.82rem;
}

.review-card .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.review-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* =========================================================
   Location / Map
   ========================================================= */
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  min-height: 320px;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-info .detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.location-info .detail .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(227, 39, 30, 0.12);
  color: var(--red-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.location-info .detail h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.location-info .detail p,
.location-info .detail a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.location-info .detail a:hover {
  color: var(--red-bright);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 420px;
  filter: grayscale(0.4) contrast(1.1);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, rgba(227, 39, 30, 0.18), rgba(227, 39, 30, 0.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 16px;
}

.cta-band p {
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 540px;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   Footer
   ========================================================= */
footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 44px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--red-bright);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-faint);
  font-size: 0.85rem;
}

.footer-bottom .legal-links {
  display: flex;
  gap: 20px;
}

.footer-bottom a:hover {
  color: var(--red-bright);
}

/* =========================================================
   Cookie banner
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(120%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 560px;
}

.cookie-banner a {
  color: var(--red-bright);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* =========================================================
   Bestelplatformen
   ========================================================= */
.order-platforms {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 40px;
  text-decoration: none;
  color: var(--text);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  min-width: 180px;
}

.platform-card:hover {
  background: rgba(227,39,30,0.12);
  border-color: var(--red);
  transform: translateY(-3px);
}

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

.platform-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.platform-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .order-platforms {
    flex-direction: column;
    align-items: stretch;
  }
  .platform-card {
    flex-direction: row;
    justify-content: center;
    padding: 20px 24px;
    min-width: unset;
  }
}

.cookie-actions .btn {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* =========================================================
   Reviews inline (homepage)
   ========================================================= */
.reviews-inline {
  margin-top: 0;
}

.reviews-inline-head {
  text-align: center;
  margin-bottom: 32px;
}

.review-score-sm {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 24px;
}

.review-score-sm .score {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
}

.review-score-sm .stars-sm {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1rem;
}

.review-score-sm .count {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* =========================================================
   Eetplaats video section
   ========================================================= */
.eetplaats-section {
  padding: 90px 0;
  background: var(--bg);
}

.eetplaats-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.eetplaats-text .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  color: var(--red-bright);
  font-weight: 600;
  margin-bottom: 12px;
}

.eetplaats-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}

.eetplaats-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.eetplaats-video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  aspect-ratio: 16 / 9;
}

.eetplaats-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.video-play-btn:hover {
  background: rgba(0, 0, 0, 0.25);
}

.video-play-btn span {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 8px 30px rgba(227, 39, 30, 0.5);
  transition: transform var(--transition), background var(--transition);
}

.video-play-btn:hover span {
  transform: scale(1.1);
  background: var(--red-bright);
}

@media (max-width: 760px) {
  .eetplaats-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* =========================================================
   Accordion menu
   ========================================================= */
.accordion-menu {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.acc-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.acc-item.open {
  border-color: rgba(227, 39, 30, 0.4);
}

.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  transition: background var(--transition);
}

.acc-header:hover {
  background: var(--bg-card-alt);
}

.acc-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.acc-title {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.acc-chevron {
  font-size: 1.4rem;
  color: var(--text-muted);
  transform: rotate(0deg);
  transition: transform 0.25s ease;
  line-height: 1;
}

.acc-item.open .acc-chevron {
  transform: rotate(90deg);
  color: var(--red-bright);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.acc-grid {
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
}

.acc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.97rem;
}

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

.acc-row--note {
  align-items: flex-start;
}

.acc-row--note > span:first-child {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.acc-row .price {
  font-weight: 700;
  color: var(--red-bright);
  flex-shrink: 0;
  font-size: 1rem;
}

/* =========================================================
   Legal pages
   ========================================================= */
.legal {
  padding: 70px 0 100px;
}

.legal h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 8px;
}

.legal .updated {
  color: var(--text-faint);
  font-size: 0.88rem;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 1.3rem;
  margin: 36px 0 12px;
}

.legal p,
.legal li {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 22px;
  list-style: disc;
}

.legal a {
  color: var(--red-bright);
  text-decoration: underline;
}

/* =========================================================
   404
   ========================================================= */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.error-page h1 {
  font-size: clamp(4rem, 14vw, 8rem);
  color: var(--red);
  line-height: 1;
}

.error-page h2 {
  margin: 16px 0 12px;
}

.error-page p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* =========================================================
   Page header (for non-landing pages)
   ========================================================= */
.page-header {
  padding: 70px 0 50px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.page-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  color: var(--red-bright);
  font-weight: 600;
  margin-bottom: 12px;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-layout {
    grid-template-columns: 1fr;
  }

  .cart {
    position: relative;
    top: 0;
  }

  .location-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(12, 12, 14, 0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: left;
  }

  .nav-toggle {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery img {
    height: 160px;
  }

  section {
    padding: 60px 0;
  }

  .review-summary {
    gap: 14px;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}

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

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
