/* ==========================================================================
   BUNTAC — Brand Theme & Bootstrap 5 Override Layer
   Terracotta (#9F1701) · Cream (#FAEAD1) · Gris Beige (#A48F7A) · Amber (#E2A43F)
   ========================================================================== */

:root {
  /* Official Brand Palette */
  --terracotta: #9f1701;
  --terracotta-deep: #801200;
  --terracotta-soft: #b82a12;
  --red: var(--terracotta);
  --red-deep: var(--terracotta-deep);
  --red-soft: var(--terracotta-soft);

  /* RAL 1019 — Gris Beige (Official Color Code: #A48F7A) */
  --ral-1019: #a48f7a;
  --gris-beige: #a48f7a;
  --gris-beige-soft: #bdaaa0;
  --gris-beige-light: #e5dbd0;
  --gris-beige-dark: #7a6857;

  /* Accent & Neutral Palette */
  --cream: #faead1;
  --card: #fbf0da;
  --card-2: #f2e2c4;
  --ink: #3a2018;
  --ink-soft: #79574a;
  --green: #6e8b3e;
  --amber: #e2a43f;
  --amber-deep: #c9862a;

  /* Design Tokens */
  --radius: 16px;
  --shadow: 0 12px 30px rgba(50, 16, 8, 0.22);
  --maxw: 1140px;
  --font-display: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Bootstrap 5.3 Theme Variable Overrides */
  --bs-primary: #9f1701;
  --bs-primary-rgb: 159, 23, 1;
  --bs-secondary: #a48f7a;
  --bs-secondary-rgb: 164, 143, 122;
  --bs-warning: #e2a43f;
  --bs-warning-rgb: 226, 164, 63;
  --bs-success: #6e8b3e;
  --bs-success-rgb: 110, 139, 62;
  --bs-danger: #9f1701;
  --bs-danger-rgb: 159, 23, 1;
  --bs-info: #a48f7a;
  --bs-info-rgb: 164, 143, 122;
  --bs-light: #faead1;
  --bs-light-rgb: 250, 234, 209;
  --bs-dark: #3a2018;
  --bs-dark-rgb: 58, 32, 24;

  --bs-body-bg: #9f1701;
  --bs-body-color: #faead1;
  --bs-body-font-family: var(--font-body);
  --bs-heading-color: #faead1;
  --bs-link-color: #e2a43f;
  --bs-link-hover-color: #ffffff;

  --bs-card-bg: #fbf0da;
  --bs-card-color: #3a2018;
  --bs-card-border-color: rgba(164, 143, 122, 0.25);
  --bs-border-radius: 12px;
  --bs-border-radius-lg: 16px;
  --bs-border-radius-sm: 8px;
}

/* --------------------------------------------------------------------------
   Global Layout & Background Grain
   -------------------------------------------------------------------------- */

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle Film Grain Noise Texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.6;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%3E%3Cfilter%20id='n'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='0.9'%20numOctaves='2'%20stitchTiles='stitch'/%3E%3CfeColorMatrix%20type='saturate'%20values='0'/%3E%3C/filter%3E%3Crect%20width='100%25'%20height='100%25'%20filter='url(%23n)'/%3E%3C/svg%3E");
}

/* SPA Loading Progress Bar (Hardware Accelerated) */
#buntac-spa-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background-color: var(--amber);
  box-shadow: 0 0 10px rgba(226, 164, 63, 0.8), 0 0 4px var(--amber);
  z-index: 99999;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  pointer-events: none;
  opacity: 0;
  will-change: width, opacity;
}

main {
  min-height: calc(100vh - 280px);
  transition: opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
}

a {
  text-decoration: none;
}

.section {
  padding: 48px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  gap: 12px;
}

.section-head h1,
.section-head h2 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 0;
}

.sh-emoji {
  margin-right: 6px;
}

.sh-count {
  color: rgba(250, 234, 209, 0.75);
  font-weight: 700;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Bootstrap Component Customizations (Buttons, Cards, Forms, Badges)
   -------------------------------------------------------------------------- */

/* Cards */
.card {
  background: var(--card);
  color: var(--ink);
  border: 1px solid rgba(164, 143, 122, 0.25);
  border-radius: var(--bs-border-radius-lg);
  box-shadow: 0 8px 24px rgba(45, 12, 6, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  box-shadow: 0 12px 30px rgba(45, 12, 6, 0.26);
}

.form-card {
  background: var(--card);
  color: var(--ink);
  padding: 32px 28px;
  border-radius: var(--bs-border-radius-lg);
  box-shadow: 0 14px 34px rgba(45, 12, 6, 0.24);
}

/* Buttons */
.btn {
  font-family: var(--font-body);
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
  border: none;
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.btn:hover {
  background: #f0b555;
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: 0 4px 14px rgba(159, 23, 1, 0.35);
}

.btn-primary:hover {
  background: var(--terracotta-soft);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(159, 23, 1, 0.45);
}

.btn-outline,
.btn-outline-secondary {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
  box-shadow: none;
}

.btn-outline:hover,
.btn-outline-secondary:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn-danger-outline {
  background: transparent;
  color: var(--terracotta) !important;
  border: 2px solid var(--terracotta) !important;
  box-shadow: none;
}

.btn-danger-outline:hover {
  background: var(--terracotta) !important;
  color: var(--cream) !important;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-details {
  background: var(--amber);
  color: var(--ink);
  font-weight: 800;
}

/* Forms */
.form-label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.form-control,
.form-select,
.form-input,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  background-color: #ffffff;
  border: 1.5px solid rgba(164, 143, 122, 0.45);
  border-radius: 10px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
}

.form-control:focus,
.form-select:focus,
.form-input:focus,
.form-textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(159, 23, 1, 0.18);
  background-color: #ffffff;
  color: var(--ink);
  outline: none;
}

.form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(164, 143, 122, 0.6);
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.form-check-input:checked {
  background-color: var(--terracotta);
  border-color: var(--terracotta);
}

.form-check-input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(159, 23, 1, 0.2);
}

.form-group {
  margin-bottom: 16px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.invalid-feedback {
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 4px;
}

/* Badges */
.badge {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.prep-badge {
  background: rgba(164, 143, 122, 0.2);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.78rem;
  border-radius: 8px;
  padding: 3px 8px;
}

/* --------------------------------------------------------------------------
   Site Header & Unified User Navigation Dropdown
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(159, 23, 1, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(250, 234, 209, 0.16);
  padding: 10px 0;
  transition: padding 0.2s ease, background 0.2s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  text-decoration: none;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(250, 234, 209, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.05);
}

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

.nav a {
  color: var(--cream);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.18s ease;
  position: relative;
  padding: 4px 0;
}

.nav a:hover,
.nav a.active {
  color: var(--amber);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: background 0.18s ease, transform 0.15s ease;
}

.cart-btn:hover {
  background: #f0b555;
  color: var(--ink);
  transform: translateY(-2px);
}

.cart-icon {
  width: 18px;
  height: 18px;
}

.cart-count {
  background: var(--terracotta);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 900;
  border-radius: 999px;
  padding: 2px 7px;
  min-width: 20px;
  text-align: center;
  line-height: 1;
}

/* Staff Kitchen Real-Time Orders Notification Button & Badge */
.staff-orders-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(226, 164, 63, 0.15);
  color: var(--cream);
  border: 1.5px solid rgba(226, 164, 63, 0.5);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  text-decoration: none;
}

.staff-orders-btn:hover {
  background: rgba(226, 164, 63, 0.3);
  color: var(--cream);
  border-color: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(226, 164, 63, 0.35);
}

.staff-orders-btn .bell-icon {
  width: 17px;
  height: 17px;
  color: var(--amber);
}

.nav-unaccepted-badge {
  background: #ef4444;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  border-radius: 999px;
  padding: 2px 7px;
  min-width: 20px;
  text-align: center;
  line-height: 1;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.35);
  animation: badgePulse 2s infinite ease-in-out;
}

.dropdown-item-badge.nav-unaccepted-badge {
  font-size: 0.68rem;
  padding: 2px 6px;
  min-width: 18px;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.35);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 5px rgba(239, 68, 68, 0.15);
  }
}

/* User Dropdown */
.user-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.user-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 234, 209, 0.12);
  color: var(--cream);
  border: 1px solid rgba(250, 234, 209, 0.3);
  border-radius: 999px;
  padding: 4px 12px 4px 5px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
  min-height: 38px;
}

.user-dropdown-toggle:hover,
.user-dropdown.open .user-dropdown-toggle {
  background: rgba(250, 234, 209, 0.22);
  border-color: rgba(250, 234, 209, 0.6);
}

.user-avatar-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  font-family: var(--font-display);
}

.user-avatar-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(250, 234, 209, 0.2);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.user-avatar-icon {
  width: 16px;
  height: 16px;
}

.dropdown-chevron {
  transition: transform 0.2s ease;
}

.user-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}

.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 240px;
  background: var(--card);
  border: 1px solid rgba(164, 143, 122, 0.35);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(45, 12, 6, 0.38);
  padding: 10px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95) translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}

.user-dropdown.open .user-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.dropdown-header {
  padding: 10px;
  background: rgba(164, 143, 122, 0.14);
  border-radius: 10px;
  margin-bottom: 6px;
}

.dropdown-user-info,
.dropdown-guest-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-user-avatar-large {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.dropdown-user-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.dropdown-user-name {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.dropdown-user-email {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.dropdown-role-badge {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 999px;
  width: fit-content;
  margin-top: 2px;
}

.badge-superadmin, .badge-staff {
  background: var(--terracotta);
  color: var(--cream);
}

.badge-customer {
  background: rgba(164, 143, 122, 0.25);
  color: var(--ink);
}

.dropdown-section {
  padding: 6px 10px;
}

.dropdown-section-title,
.dropdown-section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.dropdown-lang-switch {
  display: flex;
  gap: 6px;
}

.lang-pill-btn {
  background: #ffffff;
  border: 1px solid rgba(164, 143, 122, 0.35);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s ease;
}

.lang-pill-btn.active,
.lang-pill-btn:hover {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}

.dropdown-divider {
  height: 1px;
  background: rgba(164, 143, 122, 0.2);
  margin: 6px 0;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.dropdown-item:hover {
  background: rgba(159, 23, 1, 0.1);
  color: var(--terracotta);
  transform: translateX(3px);
}

.dropdown-item-danger {
  color: var(--terracotta);
}

.dropdown-item-danger:hover {
  background: rgba(159, 23, 1, 0.14);
}

/* --------------------------------------------------------------------------
   Mobile Bottom App-Style Slider Navigation Bar
   -------------------------------------------------------------------------- */

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .site-header {
    padding: 8px 0;
  }

  .header-inner {
    position: relative;
    justify-content: center;
  }

  .nav {
    display: none !important;
  }

  .cart-btn {
    display: none !important;
  }

  .brand {
    margin: 0 auto;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .header-actions {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
  }

  .mobile-bottom-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: rgba(36, 10, 6, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(250, 234, 209, 0.16);
    box-shadow: 0 -8px 26px rgba(0, 0, 0, 0.38);
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-nav-slider-track {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 2px;
  }

  .mobile-nav-slider-track::-webkit-scrollbar {
    display: none;
  }

  .mobile-nav-indicator {
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 0;
    height: calc(100% - 4px);
    background: linear-gradient(135deg, rgba(226, 164, 63, 0.22), rgba(159, 23, 1, 0.32));
    border: 1px solid rgba(226, 164, 63, 0.5);
    border-radius: 12px;
    pointer-events: none;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), width 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
    opacity: 0;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(226, 164, 63, 0.2);
  }

  .mobile-nav-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 4px;
    border-radius: 10px;
    color: rgba(250, 234, 209, 0.72);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 48px;
    flex: 1;
    transition: color 0.18s ease, transform 0.15s ease;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-nav-item:hover,
  .mobile-nav-item.active {
    color: #ffffff;
  }

  .mobile-nav-item.active .mobile-nav-icon-wrap {
    color: var(--amber);
  }

  .mobile-nav-icon-wrap {
    position: relative;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
  }

  .mobile-nav-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
  }

  .mobile-nav-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    background: var(--amber);
    color: var(--ink);
    font-size: 0.66rem;
    font-weight: 900;
    border-radius: 999px;
    display: grid;
    place-items: center;
    line-height: 1;
  }

  .mobile-nav-label {
    line-height: 1.1;
    font-size: 0.68rem;
    white-space: nowrap;
  }
}

/* --------------------------------------------------------------------------
   Home Hero & Category Tiles
   -------------------------------------------------------------------------- */

.hero {
  padding: 56px 0 40px;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid rgba(250, 234, 209, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  margin-bottom: 18px;
}

.hero-kicker {
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
  margin-bottom: 8px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(250, 234, 209, 0.88);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.promo-banner {
  background: rgba(226, 164, 63, 0.18);
  border: 1.5px dashed var(--amber);
  border-radius: 14px;
  padding: 14px 20px;
  color: var(--cream);
  text-align: center;
  margin-bottom: 32px;
}

.category-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 14px;
}

.category-tile {
  background: var(--card);
  color: var(--ink);
  padding: 16px 10px;
  border-radius: var(--bs-border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(45, 12, 6, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(45, 12, 6, 0.28);
  color: var(--terracotta);
}

.category-tile-media {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(164, 143, 122, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-tile-emoji {
  font-size: 2rem;
}

.category-tile-name {
  font-weight: 800;
  font-size: 0.85rem;
  text-align: center;
}

/* Why BUNTAC */
.why-card {
  border-radius: var(--bs-border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 6px;
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.4;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Food Carousel Slider Component
   -------------------------------------------------------------------------- */

.buntac-carousel {
  position: relative;
}

.carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  gap: 12px;
}

.carousel-title-group h2 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 4px;
}

.carousel-subtitle {
  color: rgba(250, 234, 209, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.carousel-nav-controls {
  display: flex;
  gap: 8px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(250, 234, 209, 0.15);
  border: 1px solid rgba(250, 234, 209, 0.3);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s ease;
}

.carousel-btn:hover:not(:disabled) {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
  transform: scale(1.05);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-slide {
  flex-shrink: 0;
  padding: 4px;
}

.carousel-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(250, 234, 209, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-dot.active {
  background: var(--amber);
  width: 26px;
  border-radius: 999px;
}

/* --------------------------------------------------------------------------
   Menu Category Filter Tabs
   -------------------------------------------------------------------------- */

.menu-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 32px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.menu-filters::-webkit-scrollbar {
  display: none;
}

.menu-filter-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(250, 234, 209, 0.14);
  color: var(--cream);
  border: 1px solid rgba(250, 234, 209, 0.25);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: all 0.18s ease;
}

.menu-filter-link:hover,
.menu-filter-link.active {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.menu-filter-img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.menu-filter-icon {
  font-size: 1.1rem;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   Product & Combo Cards
   -------------------------------------------------------------------------- */

.product-card {
  display: flex;
  flex-direction: column;
  padding: 16px;
  height: 100%;
}

.product-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 8px;
}

.product-cat-pill {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--terracotta);
  background: rgba(159, 23, 1, 0.12);
  padding: 3px 8px;
  border-radius: 999px;
}

.combo-ribbon-inline {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ink);
  background: var(--amber);
  padding: 3px 8px;
  border-radius: 999px;
}

.badge-row {
  display: flex;
  gap: 6px;
  align-items: center;
}

.product-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(164, 143, 122, 0.15);
  margin-bottom: 14px;
}

.product-media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.04);
}

.product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-card-fallback-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) blur(1px);
}

.product-emoji-overlay {
  position: absolute;
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}

.product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.product-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.product-name a {
  color: var(--ink);
  transition: color 0.15s ease;
}

.product-name a:hover {
  color: var(--terracotta);
}

.combo-items-compact {
  list-style: none;
  padding-left: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}

.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(164, 143, 122, 0.2);
  margin-top: auto;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-now {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
}

.price-old {
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: line-through;
  color: var(--ink-soft);
  opacity: 0.7;
}

.savings-pill-sm {
  background: var(--green);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 999px;
}

/* --------------------------------------------------------------------------
   Product & Combo Detail Pages
   -------------------------------------------------------------------------- */

.product-detail-container {
  padding-top: 24px;
}

.detail-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.back-link {
  color: var(--cream);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: rgba(250, 234, 209, 0.75);
}

.breadcrumb-sep {
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--cream);
  font-weight: 700;
}

.detail-media-card {
  padding: 20px;
  margin-bottom: 24px;
}

.media-badges-overlay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.media-badges-right {
  display: flex;
  gap: 6px;
}

.detail-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(164, 143, 122, 0.15);
  margin-bottom: 16px;
}

.detail-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-fallback-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) blur(2px);
}

.detail-fallback-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.detail-fallback-emoji {
  font-size: 4.5rem;
}

.detail-fallback-brand {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
}

.detail-highlights-ribbon {
  display: flex;
  justify-content: space-around;
  background: rgba(164, 143, 122, 0.14);
  padding: 10px;
  border-radius: 10px;
}

.highlight-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.detail-perks-card {
  padding: 22px;
}

.perks-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
}

.perks-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}

.perk-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.perk-bullet {
  font-size: 1.3rem;
  line-height: 1;
}

.perk-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ink);
}

.perk-item p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}

/* Configurator Card */
.product-config-card {
  padding: 28px 24px;
}

.config-meta-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.prep-pill {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: rgba(164, 143, 122, 0.18);
  padding: 3px 8px;
  border-radius: 6px;
}

.rating-mini-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--amber-deep);
}

.product-detail-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.product-detail-price-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.product-detail-desc-box {
  background: rgba(164, 143, 122, 0.12);
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 24px;
}

.desc-text {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Variants */
.config-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.config-section-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0;
}

.rule-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
}

.rule-required {
  background: rgba(159, 23, 1, 0.15);
  color: var(--terracotta);
}

.rule-optional {
  background: rgba(164, 143, 122, 0.2);
  color: var(--ink-soft);
}

.rule-guide {
  background: rgba(226, 164, 63, 0.18);
  color: #92400e;
  border: 1px solid rgba(226, 164, 63, 0.45);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: all 0.15s ease;
  font-family: inherit;
}
.rule-guide:hover {
  background: rgba(226, 164, 63, 0.32);
  color: #78350f;
  transform: translateY(-1px);
}

.variant-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.variant-option-card {
  border: 2px solid rgba(164, 143, 122, 0.35);
  border-radius: 12px;
  padding: 12px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.18s ease;
  display: flex;
}

.variant-option-card input {
  display: none;
}

.variant-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.variant-option-card.is-selected {
  border-color: var(--terracotta);
  background: rgba(159, 23, 1, 0.05);
}

.variant-name {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--ink);
}

.variant-price {
  font-weight: 800;
  color: var(--terracotta);
  font-size: 0.95rem;
}

/* Add-on Option Groups */
.addon-group-card {
  background: #ffffff;
  border: 1.5px solid rgba(164, 143, 122, 0.3);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
}

.addon-group-header {
  margin-bottom: 12px;
}

.addon-group-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.addon-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 8px;
}

.addon-option-item {
  border: 1.5px solid rgba(164, 143, 122, 0.3);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.addon-option-item input {
  display: none;
}

.addon-option-item.is-selected {
  border-color: var(--terracotta);
  background: rgba(159, 23, 1, 0.08);
}

.addon-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
}

.addon-item-price {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--terracotta);
  margin-top: 6px;
}

.delta-free {
  color: var(--green);
}

/* Stepper & Action Panel */
.detail-action-panel {
  background: rgba(164, 143, 122, 0.14);
  padding: 18px;
  border-radius: 14px;
  margin-top: 24px;
}

.action-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 14px;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid rgba(164, 143, 122, 0.4);
  border-radius: 999px;
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: rgba(164, 143, 122, 0.2);
}

.qty-input {
  width: 44px;
  border: none;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  outline: none;
}

.price-calculation-block {
  text-align: right;
}

.price-grand-total-row .total-price-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--terracotta);
}

.price-pulse {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

.order-submit-btn {
  padding: 14px;
  font-size: 1.1rem;
}

.action-footer-perks {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 12px;
  flex-wrap: wrap;
}

/* Reviews Section */
.detail-reviews-section {
  padding: 28px 24px;
}

.reviews-header-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 14px;
}

.reviews-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.reviews-subtitle {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}

.reviews-rating-badge {
  text-align: right;
}

.rating-stars-gold {
  color: var(--amber);
  font-size: 1.2rem;
}

.rating-score {
  font-weight: 800;
  color: var(--ink);
}

.verified-guarantee {
  display: block;
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 700;
}

.review-card {
  background: #ffffff;
  border: 1px solid rgba(164, 143, 122, 0.25);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Cart Page
   -------------------------------------------------------------------------- */

.cart-items-table {
  list-style: none;
  padding-left: 0;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(164, 143, 122, 0.35);
  gap: 16px;
}

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

.cart-item-details h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.cart-item-options-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}

.cart-item-option-pill {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(164, 143, 122, 0.2);
  color: var(--ink);
  padding: 2px 8px;
  border-radius: 999px;
}

.cart-stepper-form {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.stepper-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(164, 143, 122, 0.2);
  border: none;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.stepper-btn:hover {
  background: var(--amber);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0;
}

.cart-summary-box {
  background: var(--card);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.cart-summary-row.total {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--ink);
  border-top: 1.5px solid rgba(164, 143, 122, 0.35);
  padding-top: 10px;
  margin-top: 6px;
}

/* --------------------------------------------------------------------------
   Order Detail & Stage Tracking Stepper
   -------------------------------------------------------------------------- */

.order-tracking-card {
  padding: 32px 28px;
}

.tracking-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 14px;
  flex-wrap: wrap;
}

.tracking-badge-type {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--terracotta);
  display: block;
  margin-bottom: 4px;
}

.tracking-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 2px;
}

.status-pill {
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--amber);
  color: var(--ink);
}

/* 4-Stage Stepper */
.order-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 32px 0;
  position: relative;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex: 1;
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid rgba(164, 143, 122, 0.4);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.step-check {
  display: none;
}

.step-done .step-circle {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #ffffff;
}

.step-done .step-num {
  display: none;
}

.step-done .step-check {
  display: inline;
}

.step-active .step-circle {
  box-shadow: 0 0 0 5px rgba(159, 23, 1, 0.25);
}

.step-label strong {
  display: block;
  font-size: 0.88rem;
  color: var(--ink);
}

.step-label small {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.step-connector {
  flex: 1;
  height: 3px;
  background: rgba(164, 143, 122, 0.3);
  margin-top: -24px;
}

.step-connector.connector-active {
  background: var(--terracotta);
}

.stage-callout-box {
  background: #ffffff;
  border: 1.5px solid rgba(164, 143, 122, 0.35);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 24px;
}

.live-countdown-badge {
  background: var(--amber);
  color: var(--ink);
  padding: 2px 8px;
  border-radius: 6px;
}

.order-items-list {
  list-style: none;
  padding-left: 0;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(164, 143, 122, 0.3);
}

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

.order-pricing-summary {
  background: rgba(164, 143, 122, 0.14);
  padding: 16px;
  border-radius: 12px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.summary-row.total-row {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--ink);
  border-top: 1px solid rgba(164, 143, 122, 0.3);
  padding-top: 8px;
}

.order-detail-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Contact Page Components
   -------------------------------------------------------------------------- */

.contact-hero {
  text-align: center;
  padding: 32px 0 24px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(250, 234, 209, 0.15);
  color: var(--amber);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.contact-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 8px;
}

.contact-subtitle {
  font-size: 1rem;
  color: rgba(250, 234, 209, 0.85);
  max-width: 620px;
  margin: 0 auto;
}

.btn-action-call,
.btn-action-mail,
.btn-action-whatsapp,
.btn-action-map {
  background: var(--card);
  color: var(--ink);
  padding: 12px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  border: 1px solid rgba(164, 143, 122, 0.3);
}

.btn-action-icon {
  font-size: 1.5rem;
}

.btn-action-text strong {
  display: block;
  font-size: 0.85rem;
}

.btn-action-text small {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.map-embed-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
}

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

.map-overlay-bar {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
}

.map-overlay-btn {
  background: rgba(36, 10, 6, 0.88);
  backdrop-filter: blur(8px);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
}

.details-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}

.detail-item {
  display: flex;
  gap: 12px;
}

.detail-icon {
  font-size: 1.3rem;
}

.hours-table {
  width: 100%;
  font-size: 0.88rem;
  color: var(--ink);
}

.hours-table td {
  padding: 6px 0;
}

.hours-alert-banner {
  background: rgba(226, 164, 63, 0.2);
  border-left: 3px solid var(--amber);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 10px;
}

.social-channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.social-card-item {
  background: #ffffff;
  border: 1px solid rgba(164, 143, 122, 0.3);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.social-item-platform {
  font-weight: 800;
  font-size: 0.82rem;
  display: block;
}

.social-item-handle {
  font-size: 0.72rem;
  color: var(--ink-soft);
}

.social-item-arrow {
  margin-left: auto;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: rgba(36, 10, 6, 0.96);
  border-top: 1px solid rgba(250, 234, 209, 0.16);
  padding: 56px 0 28px;
  color: rgba(250, 234, 209, 0.85);
  font-size: 0.92rem;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 14px;
}

.footer-col p {
  line-height: 1.5;
}

.footer-col .pre {
  white-space: pre-line;
}

.footer-link {
  color: var(--amber);
  display: block;
  font-weight: 700;
  margin-top: 4px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(250, 234, 209, 0.14);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s ease;
}

.footer-social-btn:hover {
  background: var(--amber);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ============================================================
   Order Detail - Callout, Takeaway & Option Components
   ============================================================ */
.callout-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--bs-border-radius-lg, 0.5rem);
  background: rgba(var(--bs-warning-rgb), 0.08);
  border-left: 4px solid var(--bs-warning, #ffc107);
}
.callout-icon { font-size: 1.5rem; flex-shrink: 0; }
.callout-text { flex: 1; }
.callout-heading { font-weight: 700; margin-bottom: 0.25rem; }
.callout-meta { font-size: 0.875rem; opacity: 0.75; }

.pulse-icon { animation: buntac-pulse 1.5s ease-in-out infinite; }
.bounce-icon { animation: buntac-bounce 1s ease-in-out infinite; }
@keyframes buntac-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes buntac-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.takeaway-info-box {
  background: rgba(var(--bs-success-rgb), 0.08);
  border: 1px solid rgba(var(--bs-success-rgb), 0.3);
  border-radius: var(--bs-border-radius-lg, 0.5rem);
  padding: 1rem 1.25rem;
}
.takeaway-title { font-weight: 700; color: var(--bs-success, #198754); margin-bottom: 0.5rem; }
.takeaway-details { font-size: 0.9rem; }

.item-options-list { list-style: none; padding-left: 0; margin-bottom: 0; }
.option-pill {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(var(--bs-secondary-rgb), 0.15);
  font-size: 0.78rem;
  margin: 0.15rem 0.15rem 0 0;
}

/* Footer brand logo sizing */
.footer-brand .brand-logo { width: 36px; height: 36px; }
