:root {
  color-scheme: light;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  --bg: #e8eaf0;
  --dark: #0e1528;
  --accent: #c9a84c;
  --accent-dark: #a8892e;
  --card: #f8f9fc;
  --muted: #4a5068;
  --border: #c5cad8;
  --gold: #c9a84c;
  --navy: #1b2a4a;
  --shadow: 0 18px 36px rgba(14, 21, 40, 0.12);
  --header-offset: 120px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at top, #f0f1f6 0%, var(--bg) 45%, #dde0ea 100%);
  color: var(--dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  background: rgba(248, 249, 252, 0.9);
  border-bottom: 1px solid rgba(197, 202, 216, 0.9);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  transition: opacity 0.2s ease;
}
.contact-grid,
#menu-section,
#campaign-section {
  transition: opacity 0.2s ease;
}

body.preload .site-header,
body.preload .contact-hero,
body.preload .contact-grid,
body.preload #menu-section,
body.preload #campaign-section {
  opacity: 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.logo {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2c3e6b, var(--navy));
  color: var(--gold);
  font-size: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(27, 42, 74, 0.35);
}

.logo.logo-image {
  background: #fff;
  padding: 4px;
}

.logo.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand h1 {
  font-size: 22px;
  color: var(--navy);
}

.brand p {
  color: var(--muted);
  font-size: 14px;
}

.site-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-dropdown {
  position: relative;
}

.menu-trigger {
  border: none;
  background: #dde3f0;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  color: var(--dark);
}

.menu-list {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  background: #f5f6fa;
  border: 1px solid var(--border);
  border-radius: 14px;
  min-width: 220px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
  z-index: 20;
}

.menu-list.open {
  display: grid;
  gap: 6px;
}

.menu-item-link {
  border: none;
  background: transparent;
  padding: 8px 10px;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
}

.menu-item-link:hover {
  background: #dde3f0;
}

.site-nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background: #d0d6e8;
  color: var(--navy);
}

.lang-dropdown {
  position: relative;
}

.lang-trigger {
  border: none;
  background: #dde3f0;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-trigger img {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #f5f6fa;
  border: 1px solid var(--border);
  border-radius: 14px;
  min-width: 200px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
  z-index: 20;
}

.lang-menu.open {
  display: grid;
  gap: 6px;
}

.lang-option {
  border: none;
  background: transparent;
  padding: 8px 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
}

.lang-option img {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.lang-option.active,
.lang-option:hover {
  background: #dde3f0;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 36px 0;
  animation: fadeUp 0.6s ease both;
}

.campaign-section {
  margin: 24px 0 12px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}

.campaign-track {
  display: flex;
  transition: transform 0.6s ease;
}

.campaign-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
}

.campaign-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.campaign-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.campaign-dots {
  position: absolute;
  right: 16px;
  bottom: 12px;
  display: flex;
  gap: 6px;
}

.campaign-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.campaign-dot.active {
  background: var(--gold);
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
  color: var(--navy);
}

.hero p {
  color: var(--muted);
}

.hero-card {
  background: linear-gradient(135deg, var(--navy), #2c3e6b);
  color: #fff;
  padding: 22px;
  border-radius: 18px;
  min-width: 220px;
  box-shadow: 0 18px 36px rgba(27, 42, 74, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.35);
  animation: fadeUp 0.8s ease both;
}

.hero-card span {
  display: block;
  margin-top: 8px;
  color: var(--gold);
}

.ordering-notice {
  margin: -6px 0 24px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(27, 42, 74, 0.16);
  background: rgba(27, 42, 74, 0.08);
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow);
}

.ordering-notice.closed {
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.18);
}

.menu-section {
  display: grid;
  gap: 32px;
  margin-bottom: 60px;
}

.menu-category {
  display: grid;
  gap: 18px;
}

.menu-category h3 {
  font-size: 24px;
  color: var(--navy);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.menu-category {
  scroll-margin-top: var(--header-offset);
}


.menu-card {
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  display: grid;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(14, 21, 40, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: fadeUp 0.6s ease both;
  align-items: stretch;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(14, 21, 40, 0.12);
}

.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  background: #e4e7f0;
}

.brand {
  cursor: pointer;
}

.menu-card h4 {
  font-size: 18px;
  background: var(--navy);
  color: var(--gold);
  padding: 6px 8px;
  border-radius: 10px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.menu-card p {
  color: var(--muted);
  font-size: 14px;
  min-height: 40px;
  text-align: center;
}

.menu-card .price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}
.menu-card .price {
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
  font-size: 16px;
  text-align: center;
}
.menu-card .weight-options {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
  margin-bottom: 2px;
  text-align: center;
}

.menu-loading {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #eef0f5;
  padding: 12px 0;
}

.site-footer p {
  color: var(--muted);
}

.contact-hero {
  margin: 32px 0 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.7s ease both;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 6px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), #dfc06a);
}

.contact-card h3 {
  font-size: 18px;
  padding-left: 12px;
  color: var(--navy);
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  text-decoration: none;
}

.social-list {
  display: grid;
  gap: 10px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--dark);
  background: #e8eaf2;
  border: 1px solid #c5cad8;
  padding: 10px 12px;
  border-radius: 12px;
}

.social-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), #2c3e6b);
  font-weight: 700;
  color: var(--gold);
}

.social-icon {
  width: 18px;
  height: 18px;
}

.map-button {
  border: none;
  background: var(--navy);
  color: var(--gold);
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(27, 42, 74, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.map-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(27, 42, 74, 0.4);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  width: min(90vw, 760px);
  display: grid;
  gap: 12px;
}

.modal iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 12px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-close {
  border: none;
  background: #e8eaf0;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 700;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand > div {
    text-align: center;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .lang-dropdown {
    align-self: center;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .container {
    padding: 0 16px;
  }

  .logo {
    width: 62px;
    height: 62px;
    font-size: 28px;
  }

  .brand h1 {
    font-size: 26px;
  }

  .brand p {
    font-size: 13px;
  }

  .hero h2 {
    font-size: 26px;
  }

  .hero-card {
    width: 100%;
  }

  .campaign-slide img {
    height: 100%;
  }

  .menu-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .modal iframe {
    height: 300px;
  }
}

body[dir="rtl"] {
  direction: rtl;
}

body[dir="rtl"] .lang-menu {
  right: auto;
  left: 0;
}

.theme-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 5;
}

.theme-item {
  position: absolute;
  top: -40px;
  font-size: 20px;
  animation: fall linear infinite;
  opacity: 0.9;
}

.theme-item img {
  width: 28px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.theme-snow .theme-item {
  color: #fff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.7);
}

.theme-valentines .theme-item {
  color: #ff5c8a;
}

.theme-halloween .theme-item {
  color: #ffb347;
}

.theme-newyear .theme-item {
  color: #ffd36a;
}

.theme-turkiye .theme-item {
  color: #e11932;
}

.theme-ramadan .theme-item {
  color: #f7d26a;
}

.theme-april23 .theme-item,
.theme-may19 .theme-item,
.theme-aug30 .theme-item,
.theme-oct29 .theme-item {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.7);
}

@keyframes fall {
  to {
    transform: translateY(120vh) rotate(360deg);
  }
}

body[data-theme="valentines"] {
  --accent: #ff5c8a;
  --accent-dark: #d83b6a;
}

body[data-theme="halloween"] {
  --accent: #ff8c1a;
  --accent-dark: #cf5d00;
  --bg: #2b1a0f;
  --card: #2f2217;
  --dark: #f7e9d7;
  --muted: #cbb6a0;
  color: var(--dark);
}

body[data-theme="halloween"] .site-header,
body[data-theme="halloween"] .menu-card,
body[data-theme="halloween"] .contact-card,
body[data-theme="halloween"] .campaign-section {
  background: #3a2a1c;
  color: var(--dark);
}

body[data-theme="halloween"] .site-nav a,
body[data-theme="halloween"] .menu-trigger,
body[data-theme="halloween"] .lang-trigger {
  color: var(--dark);
}

body[data-theme="halloween"] .menu-trigger,
body[data-theme="halloween"] .lang-trigger {
  background: #4a3422;
}

body[data-theme="snow"] {
  --accent: #6ecbff;
  --accent-dark: #3a99cc;
}

body[data-theme="newyear"] {
  --accent: #ffd36a;
  --accent-dark: #e4a93d;
}

body[data-theme="turkiye"] {
  --accent: #e11932;
  --accent-dark: #b10f25;
}

body[data-theme="ramadan"] {
  --accent: #f7d26a;
  --accent-dark: #c9972b;
  --bg: #0f1a2b;
  --card: #1c2a42;
  --dark: #f8f1e4;
  --muted: #c9b99d;
  color: var(--dark);
}

body[data-theme="ramadan"] .site-header,
body[data-theme="ramadan"] .menu-card,
body[data-theme="ramadan"] .contact-card,
body[data-theme="ramadan"] .campaign-section {
  background: #1f2f4b;
  color: var(--dark);
}

body[data-theme="ramadan"] .site-nav a,
body[data-theme="ramadan"] .menu-trigger,
body[data-theme="ramadan"] .lang-trigger {
  color: var(--dark);
}

body[data-theme="ramadan"] .menu-trigger,
body[data-theme="ramadan"] .lang-trigger {
  background: #2a3b5c;
}

body[data-theme="april23"] {
  --accent: #2fb7ff;
  --accent-dark: #1a7fb8;
  --bg: #e8f6ff;
  --card: #ffffff;
  --dark: #10223b;
  --muted: #3b5a7a;
}

body[data-theme="may19"] {
  --accent: #1fbf6f;
  --accent-dark: #0f8a4e;
  --bg: #eefaf3;
  --card: #ffffff;
  --dark: #0f2b1e;
  --muted: #2d5a44;
}

body[data-theme="aug30"] {
  --accent: #f2b43c;
  --accent-dark: #c48214;
  --bg: #fff4df;
  --card: #fffdf9;
  --dark: #2b1b07;
  --muted: #5c4528;
}

body[data-theme="oct29"] {
  --accent: #e11932;
  --accent-dark: #b10f25;
  --bg: #fff0f0;
  --card: #ffffff;
  --dark: #2a0b0f;
  --muted: #6a2a33;
}

/* Categories accordion */
.categories-accordion {
  margin: 0 0 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: fadeUp 0.5s ease both;
}

.categories-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: none;
  background: transparent;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
}

.categories-toggle .cat-arrow {
  transition: transform 0.3s ease;
  font-size: 14px;
  color: var(--muted);
}

.categories-accordion.open .cat-arrow {
  transform: rotate(180deg);
}

.categories-body {
  display: none;
  padding: 0 14px 14px;
}

.categories-accordion.open .categories-body {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cat-chip {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #dde3f0;
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  cursor: pointer;
  border: none;
}

.cat-chip:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-1px);
}

/* Scroll to top button */
.scroll-top-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 25;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(27,42,74,0.4);
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-top-btn.visible {
  display: flex;
}

.scroll-top-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(27,42,74,0.5);
}

/* ===================== CART BUTTON ===================== */
.cart-btn {
  position: relative;
  border: none;
  background: var(--navy);
  color: var(--gold);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(27,42,74,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(27,42,74,0.4);
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e53e3e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}
.cart-badge:empty,
.cart-badge[data-count="0"] {
  display: none;
}

/* ===================== CART PANEL (Slide-in) ===================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-panel {
  position: fixed;
  top: 0;
  right: -380px;
  width: 370px;
  max-width: 90vw;
  height: 100vh;
  background: #fff;
  z-index: 51;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,0.15);
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
}
.cart-panel.open {
  right: 0;
}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--navy);
  color: var(--gold);
}
.cart-header h3 {
  font-size: 18px;
}
.cart-close {
  border: none;
  background: rgba(255,255,255,0.15);
  color: var(--gold);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: grid;
  place-items: center;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
}
.cart-empty {
  color: var(--muted);
  text-align: center;
  padding: 40px 0;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.cart-item-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  background: #f0f1f5;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-weight {
  font-size: 12px;
  color: var(--muted);
}
.cart-item-price {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cart-item-qty button {
  border: 1px solid var(--border);
  background: #f5f6fa;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  display: grid;
  place-items: center;
  color: var(--dark);
}
.cart-item-qty button:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.cart-item-qty span {
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}
.cart-footer {
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  background: #f8f9fc;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.cart-checkout-btn {
  width: 100%;
  border: none;
  background: var(--navy);
  color: var(--gold);
  padding: 14px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(27,42,74,0.3);
  transition: transform 0.2s ease;
}
.cart-checkout-btn:hover {
  transform: translateY(-2px);
}
.cart-checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ===================== ADD TO CART on menu cards ===================== */
.menu-card-add-btn {
  border: none;
  background: var(--navy);
  color: var(--gold);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  display: grid;
  place-items: center;
  position: absolute;
  top: 10px;
  right: 10px;
  box-shadow: 0 4px 12px rgba(27,42,74,0.3);
  transition: transform 0.2s ease;
  z-index: 2;
}
.menu-card-add-btn:hover {
  transform: scale(1.15);
}
.menu-card {
  position: relative;
}

/* Weight option selector on card */
.weight-select-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.weight-select-btn {
  border: 1px solid var(--border);
  background: #f0f1f5;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: var(--dark);
  transition: all 0.2s ease;
}
.weight-select-btn:hover,
.weight-select-btn.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

/* ===================== ORDER MODAL ===================== */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 20px;
}
.order-modal-overlay.open {
  display: flex;
}
.order-modal {
  background: #fff;
  border-radius: 20px;
  width: min(460px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}
.order-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--navy);
  color: var(--gold);
  border-radius: 20px 20px 0 0;
}
.order-modal-header h3 {
  font-size: 18px;
}
.order-form {
  padding: 20px 22px;
  display: grid;
  gap: 14px;
}
.order-form label {
  display: grid;
  gap: 4px;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}
.order-form input,
.order-form select,
.order-form textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 15px;
  font-family: inherit;
  background: #f8f9fc;
  color: var(--dark);
}
.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,0.12);
}
.order-summary {
  background: #f5f6fa;
  border-radius: 14px;
  padding: 14px;
  font-size: 14px;
}
.order-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid #eee;
}
.order-summary-item:last-child {
  border-bottom: none;
}
.order-summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 16px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 2px solid var(--navy);
  color: var(--navy);
}
.order-submit-btn {
  border: none;
  background: var(--navy);
  color: var(--gold);
  padding: 14px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(27,42,74,0.3);
  transition: transform 0.2s ease;
}
.order-submit-btn:hover {
  transform: translateY(-2px);
}
.order-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===================== ORDER TRACKING ===================== */
.order-track-content {
  padding: 24px 22px;
  text-align: center;
}
.order-status-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  margin: 12px 0 16px;
}
.order-status-badge.pending { background: #fef3cd; color: #856404; }
.order-status-badge.approved { background: #d1ecf1; color: #0c5460; }
.order-status-badge.preparing { background: #fff3cd; color: #856404; }
.order-status-badge.ready { background: #d4edda; color: #155724; }
.order-status-badge.completed { background: #e2e3e5; color: #383d41; }
.order-status-badge.cancelled { background: #f8d7da; color: #721c24; }

.order-track-items {
  text-align: left;
  margin-top: 16px;
}
.order-track-items .order-summary-item {
  padding: 6px 0;
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: var(--gold);
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(27,42,74,0.4);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 600px) {
  .cart-panel {
    width: 100vw;
    right: -100vw;
  }
  .cart-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .order-modal {
    width: 100%;
    border-radius: 16px;
  }
}

/* Mobile header shrink */
@media (max-width: 600px) {
  .site-header {
    transition: padding 0.3s ease;
  }

  .site-header.shrunk .brand {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease, margin 0.3s ease;
  }

  .site-header .brand {
    max-height: 100px;
    opacity: 1;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }

  .site-header.shrunk {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .hero-card {
    display: none !important;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .menu-card .price-row,
  .menu-card .price,
  .menu-card .weight-options {
    text-align: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: 13px !important;
    word-break: break-word;
    white-space: normal;
  }

  .menu-card h4 {
    font-size: 14px;
    padding: 4px 6px;
  }

  .menu-card p {
    font-size: 12px;
    min-height: 30px;
  }
}
