/* ============================================
   SOHO CAFE & GRILL — Main Stylesheet
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a96e;
  --gold-light: #e8c98a;
  --dark: #181818;
  --dark-2: #141414;
  --dark-3: #1c1c1c;
  --dark-4: #242424;
  --border: rgba(255,255,255,0.08);
  --text: #e8e8e8;
  --text-muted: #888;
  --green: #27ae60;
  --red: #e74c3c;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }
/* Webkit browsers - Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #d4af37, #f5d76e, #d4af37);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #f5d76e, #d4af37, #f5d76e);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #d4af37 rgba(255,255,255,0.05);
}
body {
  font-family: 'Inter', sans-serif;
  background: #181818;
  color: var(--text);
  overflow-x: hidden;
}

/* ============================================
/* ============================================
   WELCOME MODAL
   ============================================ */

   /* Modal ka setup */
.modal-backdrop {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Jab confirm ho jaye, toh ise hidden class de dena */
.hidden {
    display: none !important;
}
.modal-backdrop {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.modal-backdrop.hidden { display: none; }

.welcome-modal {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%; max-width: 480px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
  overflow: hidden;
  animation: modalIn 0.35s cubic-bezier(.4,0,.2,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* HEADER */
.modal-header {
  padding: 28px 28px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(160deg, #1c0f00 0%, #111 100%);
}
.modal-logo { display: flex; flex-direction: column; align-items: center; margin-bottom: 10px; }
.modal-logo .logo-text {
  font-family: 'Inter';
  font-size: 30px; color: var(--gold);
  letter-spacing: 6px;
}
.modal-logo .logo-sub {
  font-size: 10px; letter-spacing: 5px;
  color: var(--text-muted); text-transform: uppercase; margin-top: 2px;
}
.modal-tagline { color: var(--text-muted); font-size: 14px; }

/* ORDER TYPE TABS */
.ot-tabs-wrap {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.ot-tab {
  flex: 1; padding: 13px 8px;
  background: transparent; border: none;
  color: var(--text-muted); font-size: 13px;
  font-weight: 600; letter-spacing: 1px;
  cursor: pointer; font-family: 'Inter', sans-serif;
  border-bottom: 2px solid transparent;
  transition: all 0.2s; margin-bottom: -1px;
}
.ot-tab:hover { color: var(--text); }
.ot-tab.active {
  color: #E1BF4C;
  border-bottom-color: #E1BF4C;
  background: rgba(201,169,110,0.04);
}


/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(3px);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed; top: 0; right: -480px; bottom: 0;
  width: 420px; background: var(--dark-2);
  border-left: 1px solid var(--border);
  z-index: 201;
  transition: right 0.35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
}
.cart-sidebar.active { right: 0; }

/* HEADER */
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-header h2 {
  font-family: 'Inter';
  font-size: 20px; color: var(--text);
}
.cart-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--dark-4); border: 1px solid var(--border);
  color: var(--text-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.cart-close:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ITEMS WRAP */
.cart-items-wrap {
  flex: 1; overflow-y: auto;
  padding: 16px;
}

/* EMPTY STATE */
.cart-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; gap: 10px; color: var(--text-muted);
  padding: 60px 20px;
}
.cart-empty-icon { font-size: 52px; margin-bottom: 6px; }
.cart-empty p { font-size: 16px; font-weight: 600; color: var(--text); }
.cart-empty span { font-size: 13px; text-align: center; line-height: 1.5; }

/* CART ITEM */
.cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.cart-item:hover { border-color: rgba(201,169,110,0.25); }

.ci-img {
  width: 54px; height: 54px; border-radius: 10px;
  background: var(--dark-4);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; flex-shrink: 0; overflow: hidden;
}
.ci-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }

.ci-info { flex: 1; min-width: 0; }
.ci-name {
  font-size: 14px; font-weight: 600; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 4px;
}
.ci-price { font-size: 13px; color: var(--gold); font-weight: 600; }

.ci-controls {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.ci-btn {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--dark-4); border: 1px solid var(--border);
  color: var(--text); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; line-height: 1;
  transition: all 0.15s;
}
.ci-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.ci-btn.delete:hover { background: var(--red); border-color: var(--red); color: #fff; }
.ci-qty { font-size: 14px; font-weight: 700; min-width: 22px; text-align: center; color: var(--text); }

/* BOTTOM SECTION */
.cart-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 20px 20px;
  flex-shrink: 0;
  background: var(--dark-2);
}

.add-more-btn {
  display: flex; align-items: center; gap: 7px;
  background: transparent; border: 1px dashed var(--border);
  color: var(--text-muted); padding: 9px 14px;
  border-radius: 9px; font-size: 13px; cursor: pointer;
  width: 100%; margin-bottom: 16px;
  transition: all 0.2s; font-family: 'Inter', sans-serif;
}
.add-more-btn:hover { border-color: var(--gold); color: #E1BF4C; }

/* TOTALS */
.cart-totals { margin-bottom: 14px; }
.total-row {
  display: flex; justify-content: space-between;
  align-items: center; padding: 5px 0;
  font-size: 14px; color: var(--text-muted);
}
.total-row.grand {
  font-size: 16px; font-weight: 700;
  color: var(--text);
  border-top: 1px solid var(--border);
  padding-top: 10px; margin-top: 6px;
}
.total-row.grand span:last-child { color: #E1BF4C }

/* DELIVERY ETA */
.delivery-eta {
  display: flex; align-items: center; gap: 8px;
  background: rgba(201,169,110,0.07);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 9px; padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 12px; color: var(--text-muted); line-height: 1.5;
}
.delivery-eta strong { color: #E1BF4C; }

/* CHECKOUT BTN */
.checkout-btn{
    width:100%;
    margin-top:16px;
    position:relative;
    overflow:hidden;

    background:linear-gradient(135deg,#d4af37,#f5d76e,#d4af37);
    color:#000;
    border:none;
    padding:14px;
    border-radius:10px;
    font-size:15px;
    font-weight:700;
    cursor:pointer;

    transition:.3s ease;
}

.checkout-btn::before{
    content:"";
    position:absolute;
    top:-50%;
    left:-120%;
    width:40%;
    height:220%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.8),
        transparent
    );
    transform:rotate(25deg);
    filter:blur(6px);
    animation:btnShine 1.8s linear infinite;
}

@keyframes btnShine{
    0%{
        left:-120%;
    }
    100%{
        left:150%;
    }
}

.checkout-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(212,175,55,.45);
}

.checkout-btn:active{
    transform:scale(.98);
}

/* SCROLLBAR */
.cart-items-wrap::-webkit-scrollbar { width: 4px; }
.cart-items-wrap::-webkit-scrollbar-track { background: transparent; }
.cart-items-wrap::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

@media (max-width: 600px) {
  .cart-sidebar { width: 100%; right: -100%; }
}

/* TOAST NOTIFICATION */
.toast-notification {
  position: fixed;
  top: 80px; left: 50%; transform: translateX(-50%) translateY(-20px);
  background: #1a2e1a;
  border: 1px solid #2ecc71;
  color: #2ecc71;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  z-index: 999;
  opacity: 0;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  pointer-events: none;
}
.toast-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* FLOATING CART BAR */
.floating-cart-bar {
  position: fixed;
  bottom: -80px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 40px); max-width: 420px;
  background: var(--dark-3);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 300;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.6);
  transition: bottom 0.4s cubic-bezier(.4,0,.2,1);
  backdrop-filter: blur(12px);
}
.floating-cart-bar.show { bottom: 100px; }

.fcb-left {
  display: flex; align-items: center; gap: 10px;
}
.fcb-count {
  background: linear-gradient(135deg,#d4af37,#f5d76e,#d4af37) !important; color: #000000 !important;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
}
.fcb-label { font-size: 13px; color: var(--text-muted); }

.fcb-btn {
  display: flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg,#d4af37,#f5d76e,#d4af37) !important; color: #000000 !important; 
  border: none; padding: 10px 22px; border-radius: 10px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, transform 0.1s;
}
.fcb-btn:hover { background: var(--gold-light); }
.fcb-btn:active { transform: scale(0.97); }

.fcb-total {
  font-size: 15px; font-weight: 700; color: #E1BF4C;
  min-width: 80px; text-align: right;
}
@media (max-width: 480px) {
  .floating-cart-bar {
    width: calc(100% - 24px);
    max-width: none;
    padding: 12px 16px;
  }
  .fcb-label { display: none; }   /* "items in cart" text hide, sirf number dikhe */
}
/* ===============================
   PREMIUM FLOATING CART BAR
================================ */
/* Hidden by default */
.floating-cart-bar{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(100px);
    transition: all .35s ease;
}

/* Show when JS adds .show */
.floating-cart-bar.show{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.floating-cart-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 520px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    overflow: hidden;
    z-index: 9999;

    background: linear-gradient(135deg, #111111 0%, #1b1b1b 50%, #111111 100%);
    color: #fff;
    border-radius: 50px;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 12px 35px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.08);
}

/* Premium Moving Shine */
.floating-cart-bar::before{
    content:"";
    position:absolute;
    top:-80%;
    left:-120%;
    width:40%;
    height:260%;
    background:linear-gradient(
        90deg,
        rgba(255,255,255,0),
        rgba(255,255,255,.05),
        rgba(255,255,255,.65),
        rgba(255,255,255,.05),
        rgba(255,255,255,0)
    );
    transform:rotate(25deg);
    filter:blur(12px);
    animation:premiumShine 1.4s linear infinite;
    pointer-events:none;
}

@keyframes premiumShine{
    0%{
        left:-120%;
    }
    100%{
        left:150%;
    }
}

/* Left Side */
.fcb-left{
    display:flex;
    align-items:center;
    gap:10px;
    position:relative;
    z-index:2;
}

.fcb-count{
    width:30px;
    height:30px;
    border-radius:50%;
    background:var(--gold);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:14px;
    box-shadow:0 0 15px rgba(255,115,0,.45);
}

.fcb-label{
    font-size:14px;
    font-weight:500;
    color:#f3f3f3;
}

/* Button */
.fcb-btn{
    display:flex;
    align-items:center;
    gap:8px;
    border:none;
    border-radius:30px;
    padding:12px 22px;
    cursor:pointer;

    background:var(--gold);
    color:#fff;
    font-size:15px;
    font-weight:700;

    box-shadow:
        0 8px 20px rgba(255,102,0,.35);

    transition:.3s ease;
    position:relative;
    z-index:2;
}

.fcb-btn:hover{
    transform:translateY(-2px) scale(1.03);
    box-shadow:
        0 12px 28px rgba(255,102,0,.55);
}

.fcb-btn svg{
    transition:.3s;
}

.fcb-btn:hover svg{
    transform:translateX(4px);
}

/* Total */
.fcb-total{
    font-size:16px;
    font-weight:700;
    white-space:nowrap;
    position:relative;
    z-index:2;
}

/* Mobile */
@media(max-width:576px){

    .floating-cart-bar{
        padding:12px 16px;
        gap:10px;
    }

    .fcb-label{
        font-size:13px;
    }

    .fcb-btn{
        padding:10px 18px;
        font-size:14px;
    }

    .fcb-total{
        font-size:15px;
    }
}
.cart-empty {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; text-align: center; padding: 24px;
}
.empty-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  margin: 0 !important; line-height: 1.3 !important;
}
.empty-sub {
  font-size: 14px !important;
  color: var(--text-muted) !important;
  line-height: 1.5 !important;
  max-width: 180px !important;
  margin: 0 !important;
}
.cart-empty-browse {
  margin-top: 12px;
  background: var(--gold); color: #000;
  border: none; padding: 10px 24px;
  border-radius: 10px; font-size: 13px;
  font-weight: 700; cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.cart-empty-browse:hover { background: var(--gold-light); }

.modal-logo-img {
  width: 120px;
  height: auto;
  object-fit: contain;
  margin-bottom: 6px;
}
/* Container ka basic setup */
.choices {
    margin-bottom: 0;
    width: 100%;
}

/* Dropdown ka inner area (Search box) */
.choices__inner {
    background-color: #1a1a1a !important;
    border: 1px solid #333 !important;
    border-radius: 6px !important;
    color: #fff !important;
    min-height: 50px !important;
    padding: 10px !important;
}

/* Dropdown list (Jo items ki list hai) */
.choices__list--dropdown {
    background-color: #1a1a1a !important;
    border: 1px solid #d4af37 !important;
    color: #fff !important;
}

/* Item hover color */
.choices__item--selectable.is-highlighted {
    background-color: #d4af37 !important;
    color: #000 !important;
}

/* Dropdown list items (Text color fix) */
.choices__list--dropdown .choices__item {
    color: #fff !important;
}

/* Search input color */
.choices__input {
    background-color: #1a1a1a !important;
    color: #fff !important;
}

/* Scrollbar adjustment */
/* Choices container ko manage karo */
.choices__list--dropdown {
    position: absolute;
    top: 100%;
    z-index: 9999;
    max-height: 200px; /* List ki height limit karo */
    overflow-y: auto;   /* Scrollbar add karo */
    background-color: #1a1a1a !important;
    border: 1px solid #d4af37 !important;
    width: 100%;
}

/* Modal body ka overflow fix karo */
.modal-body {
    overflow: visible !important; /* Important: Dropdown ko cut hone se bachayega */
    min-height: 310px !important;
    
}

/* Dropdown item design */
.choices__list--dropdown .choices__item {
    padding: 10px 15px !important;
    color: #fff !important;
    cursor: pointer;
}

.choices__list--dropdown .choices__item.is-highlighted {
    background-color: #d4af37 !important;
    color: #000 !important;
}
/* Ensure dropdown list is visible and scrollable */
.choices__list--dropdown {
    background-color: #1a1a1a !important;
    border: 1px solid #d4af37 !important;
    max-height: 250px !important;
    overflow-y: auto !important;
}

.choices__list--dropdown .choices__item {
    color: #ffffff !important;
    padding: 10px !important;
}

.choices__item--selectable.is-highlighted {
    background-color: #d4af37 !important;
    color: #000 !important;
}

/* Modal Input Container */
.modal-input {
    background-color: #1a1a1a !important;
    border: 1px solid #333 !important;
    color: #fff !important;
}
/* Modal body ko ek min-height de do */


/* Tab content ka transition smooth karne ke liye */
#deliverySection, #pickupSection {
    width: 100% !important;
}
.customer-fields {
    display: none !important; /* Page load hote hi hide */
}
/* Modal ka main body container */
.modal-body {
    min-height: 280px; /* Isay fixed rakhne se jump nahi hoga */
    padding-top: 20px;
}

/* Location Button (Gold SOHO Style) */
.location-btn {
    width: 100%;
    padding: 12px;
    background: transparent !important;
    border: 1px solid #d4af37 !important;
    color: #d4af37 !important;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
    transition: 0.3s;
}

.location-btn:hover {
    background: #d4af37 !important;
    color: #000 !important;
}

/* Fields default hide */
.customer-fields {
    display: none; 
}
/* BODY */
.modal-body { padding: 24px 24px 28px; }

.section-label {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 12px; letter-spacing: 0.3px;
}

/* CUSTOM SELECT DROPDOWN */
.custom-select-wrap { position: relative; }

.custom-select {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px;
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: 10px; cursor: pointer;
  font-size: 14px; color: var(--text-muted);
  transition: border-color 0.2s;
  user-select: none;
}
.custom-select:hover, .custom-select.open { border-color: var(--gold); color: var(--text); }
.custom-select.open .chevron { transform: rotate(180deg); }
.chevron { transition: transform 0.2s; flex-shrink: 0; color: var(--text-muted); }

.custom-dropdown {
  position: absolute; bottom: calc(100% + 6px); left: 0; right: 0;
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: 10px; z-index: 10;
  max-height: 220px; overflow-y: auto;
  display: none;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
  animation: dropIn 0.18s ease;
}
.custom-dropdown.open { display: block; }
@keyframes dropIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; cursor: pointer;
  font-size: 14px; color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: rgba(201,169,110,0.08); }
.dropdown-item.selected { background: rgba(201,169,110,0.1); color: var(--gold); }
.item-meta { font-size: 12px; color: var(--text-muted); }

/* OUTLET INFO BOX */
.outlet-info-box {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 10px; margin-bottom: 4px;
}
.outlet-info-box div { display: flex; flex-direction: column; gap: 3px; }
.outlet-info-box strong { font-size: 14px; color: var(--text); }
.outlet-info-box span { font-size: 12px; color: var(--text-muted); }

/* CUSTOMER FIELDS */
.customer-fields { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; margin-bottom: 16px; }

.modal-input {
  width: 100%; padding: 13px 16px;
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text);
  font-size: 14px; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.2s;
}
.modal-input:focus { border-color: var(--gold); }
.modal-input::placeholder { color: #555; }

/* ERROR NOTE */
.modal-note {
  font-size: 12px; color: var(--red);
  text-align: center; min-height: 18px;
  margin-bottom: 12px;
}

/* CONFIRM BTN */
.modal-confirm-btn{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    position:relative;
    overflow:hidden;

    padding:14px;
    background:linear-gradient(135deg,#d4af37,#f5d76e,#d4af37) !important;
    color:#000;

    border:none;
    border-radius:12px;

    font-size:15px;
    font-weight:700;
    font-family:'Inter',sans-serif;
    cursor:pointer;

    transition:.3s ease;
}

/* Premium Shine */
.modal-confirm-btn::before{
    content:"";
    position:absolute;
    top:-50%;
    left:-120%;
    width:40%;
    height:220%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.85),
        transparent
    );
    transform:rotate(25deg);
    filter:blur(6px);
    animation:modalBtnShine 1.8s linear infinite;
    pointer-events:none;
}

@keyframes modalBtnShine{
    0%{
        left:-120%;
    }
    100%{
        left:150%;
    }
}

.modal-confirm-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(212,175,55,.45);
}

.modal-confirm-btn:active{
    transform:scale(.98);
}

/* NAVBAR */
/* .navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.logo-text { font-family: 'Inter'; font-size: 22px; color: var(--gold); letter-spacing: 3px; }
.logo-sub { font-size: 9px; letter-spacing: 4px; color: var(--text-muted); text-transform: uppercase; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.closed-badge { background: var(--red); color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; }

.cart-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold); color: #000;
  border: none; padding: 8px 18px; border-radius: 8px;
  font-weight: 600; font-size: 14px; cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.cart-btn:hover { background: var(--gold-light); }
.cart-btn:active { transform: scale(0.97); }
.cart-count {
  background: #000; color: var(--gold);
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
} */
/* ── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed; top: 35px !important; left: 0; right: 0; z-index: 100;
  background: #23180d;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 80px;
}
.nav-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 0 20px; height: 100%;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* LEFT PILLS */
.nav-left { display: flex; align-items: center; gap: 8px; }

.nav-pill-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 7px 12px;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  color: var(--text);
}
.nav-pill-btn:hover { border-color: var(--gold); background: rgba(201,169,110,0.06); }

.nav-pill-text { display: flex; flex-direction: column; text-align: left; }
.pill-top { font-size: 10px; color: var(--text-muted); letter-spacing: 0.3px; line-height: 1; }
.pill-bot { font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.4; }

/* CENTER LOGO */
.nav-logo-center {
  position: absolute; left: 50%; transform: translateX(-50%);
  top: 0;
  padding: 15px;
}
.nav-logo-img {
  height: 50px; width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

/* RIGHT */
.nav-right { display: flex; align-items: center; gap: 10px; }

.nav-franchise-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text); padding: 8px 16px;
  border-radius: 8px; font-size: 13px;
  font-weight: 500; cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.nav-franchise-btn:hover { border-color: #E1BF4C; color: #E1BF4C; }

.cart-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark-3);
  border: 1px solid var(--border);
  width: 42px; height: 42px; border-radius: 10px;
  cursor: pointer; color: var(--text);
  transition: all 0.2s;
}
.cart-btn:hover { border-color: #E1BF4C; color: #E1BF4C; }

.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: linear-gradient(135deg,#d4af37,#f5d76e,#d4af37) !important; color: #000;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

.nav-hamburger {
  background: var(--dark-3); border: 1px solid var(--border);
  color: var(--text); width: 42px; height: 42px;
  border-radius: 10px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.nav-hamburger:hover { border-color: #E1BF4C; color: #E1BF4C; }

/* RESPONSIVE */
/* @media (max-width: 768px) {
  .nav-franchise-btn { display: none; }
  .nav-left .nav-pill-btn:last-child { display: none; }
  .pill-top { display: none; }
  .pill-bot { font-size: 11px; }
}
@media (max-width: 480px) {
  .nav-left { display: none; }
} */
/* RESPONSIVE */
/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-franchise-btn { display: none; }
  .pill-top { display: none; }
  .pill-bot { font-size: 11px; }
  .nav-logo-img{
    height: 50px;
  }
}
@media (max-width: 480px) {
  .nav-pill-text { display: none; }
  .nav-pill-btn {
    padding: 8px;
    width: 38px;
    height: 38px;
    justify-content: center;
  }
  .nav-inner {
    gap: 6px;
  }
  .nav-logo-img{
    height: 40px;
  }
}
/* ── Hero Slider ── */
.hero-slider {
    position: relative;
    height: 800px;
    overflow: hidden;
    margin: 16px 24px;
    border-radius: 20px;
    margin-top: 100px;
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  border-radius: 20px;        /* ADDED — taake slides bhi rounded ho */
}
.hero-slider .slide.active {
  opacity: 1;
  z-index: 2;
    border-radius: 20px;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.10) 100%
  );
  border-radius: 20px;        /* ADDED */
}
.slide-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

/* dots ko center karo */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

/* nav buttons properly center */
.slider-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.slider-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .hero-slider {
    margin: 10px 12px;
    border-radius: 20px;
    height: 400px;
  }
  .hero-slider .slide {
    border-radius: 14px;
  }
}

/* hero text styles — jo pehle se hain unhe check karo */
.hero-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 16px;
  display: block;
}
.hero-title {
  font-size: 56px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  font-family: 'Inter';
}
.hero-title .gold {
  color: #c9a84c;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.60);
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 1.6;
}
.hero-btn {
  display: inline-block;
  background: transparent;
  border: 1.5px solid #c9a84c;
  color: #c9a84c;
  padding: 13px 32px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.hero-btn:hover {
  background: #c9a84c;
  color: #111;
}

@media (max-width: 768px) {
  .hero-slider { height: 370px; }
  .slide-content { padding: 0 24px; }
  .hero-title { font-size: 36px; }
  .slider-prev, .slider-next { display: none; }
}
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  color: #c9a84c;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slider-prev:hover,
.slider-next:hover {
  background: rgba(201,168,76,0.35);
}
.slider-prev {
  left: 24px;
}
.slider-next {
  right: 24px;
}

@media (max-width: 768px) {
  .slider-prev,
  .slider-next {
    display: none;
  }
  .hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
}
}
@media (max-width: 480px) {
  .hero-slider {
    height: 160px !important;
    border-radius: 16px;
    overflow: hidden;
      margin-top: 100px;
  }
  .hero-slider .slide {
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-color: #1a1a1a;   /* gap fill karne ke liye agar image contain hai */
  }
}
@media (max-width: 360px) {
  .hero-slider {
    height: 200px !important;
    margin-top: 75px;
}
}



/* categories */
/* ── Sticky Category Bar ── */
/* LIST TOGGLE BUTTON (left fixed icon) */
.cat-bar-wrap {
  position: sticky;
  top: 115px !important;
  z-index: 100;
  background: #111;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* LIST TOGGLE BUTTON (left fixed icon) */
.cat-list-toggle {
  flex-shrink: 0;
  width: 40px; height: 40px;
  margin-left: 16px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  color: #c9a84c;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.cat-list-toggle:hover { background: rgba(201,168,76,0.18); }

.cat-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 24px 10px 20px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
}
@media (max-width: 360px) {
    .nav-logo-img {
        height: 36px;
    }
}
.cat-bar::-webkit-scrollbar { display: none; }

.cat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.cat-pill img { width: 28px; height: 28px; object-fit: cover; border-radius: 50%; }
.cat-pill-icon { font-size: 18px; }
.cat-pill:hover {
  border-color: rgba(201,168,76,0.4);
  color: #c9a84c;
  background: rgba(201,168,76,0.08);
}
.cat-pill.active {
  background: linear-gradient(135deg,#d4af37,#f5d76e,#d4af37) !important;
  border-color: #c9a84c;
  color: #111;
  font-weight: 600;
}
.cat-bar-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.cat-bar {
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}
.cat-bar::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Edge */
}
.cat-scroll-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border, rgba(255,255,255,0.15));
  background: var(--bg-elev-2, #1f1a14);
  color: var(--gold, #cda45e);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: opacity 0.2s, background 0.2s;
}
.cat-scroll-arrow:hover {
  background: var(--gold, #cda45e);
  color: var(--bg, #0c0a09);
}
.cat-scroll-arrow.hidden {
  display: none;
}
.cat-scroll-left  { margin-right: 6px; }
.cat-scroll-right { margin-left: 6px; }

@media (max-width: 768px) {
  .cat-scroll-arrow { display: none !important; }
}
/* ── EDGE FADE (pills arrow ke peeche fade ho jayein) ── */
.cat-bar-wrap::before,
.cat-bar-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 46px;
  z-index: 6;
  pointer-events: none;
}
.cat-bar-wrap::before {
  left: 0;
  background: linear-gradient(to right, #111 25%, transparent);
}
.cat-bar-wrap::after {
  right: 0;
  background: linear-gradient(to left, #111 25%, transparent);
}

/* ── ARROW BUTTONS (edge par overlap) ── */
.cat-scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(17,17,17,0.9);
  border: 1px solid rgba(201,168,76,0.35);
  color: #c9a84c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.45);
  transition: background 0.2s, color 0.2s;
}
.cat-scroll-arrow:hover {
  background: #c9a84c;
  color: #111;
}
.cat-scroll-left  { left: 6px; }
.cat-scroll-right { right: 6px; }
.cat-scroll-arrow.hidden { display: none; }

@media (max-width: 768px) {
  .cat-scroll-arrow,
  .cat-bar-wrap::before,
  .cat-bar-wrap::after { display: none !important; }
}
.cat-bar-wrap {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: #111;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;   /* ← ye ek line add karo */
}

/* ── CATEGORY LIST PANEL (dropdown sheet) ── */
.cat-list-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.cat-list-overlay.show { opacity: 1; pointer-events: all; }

.cat-list-panel {
  position: fixed;
  top: 0; left: -300px;
  width: 280px; height: 100%;
  background: #181818;
  border-right: 1px solid rgba(201,168,76,0.15);
  z-index: 999;
  display: flex; flex-direction: column;
  transition: left 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: 8px 0 30px rgba(0,0,0,0.5);
}
.cat-list-panel.open { left: 0; }

.cat-list-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px; font-weight: 700; color: #fff;
}
.cat-list-header button {
  background: transparent; border: none; color: rgba(255,255,255,0.5);
  cursor: pointer; padding: 4px; display: flex;
}
.cat-list-header button:hover { color: #c9a84c; }

.cat-list-body {
  flex: 1; overflow-y: auto;
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.cat-list-item {
  display: flex; align-items: center; gap: 12px;
  width: 100%; text-align: left;
  padding: 12px 14px;
  background: transparent; border: none;
  border-radius: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.cat-list-item:hover { background: rgba(255,255,255,0.05); }
.cat-list-item.active {
  background: rgba(201,168,76,0.12);
  color: #c9a84c;
  font-weight: 600;
}
.cat-list-icon { font-size: 18px; flex-shrink: 0; }
.cat-list-toggle {
  display: none; /* desktop pe hide */
}

@media (max-width: 768px) {
  .cat-list-toggle {
    display: flex; /* mobile pe show */
  }
}
@media (max-width: 768px) {
  .cat-bar-wrap { top: 60px; }
  .cat-bar { padding: 8px 16px 8px 6px; }
  .cat-list-toggle { margin-left: 12px; width: 36px; height: 36px; }
}

/* ══════════════════════════════════════════
   ITEM CUSTOMIZATION MODAL — Xander's style layout
   ══════════════════════════════════════════ */

.item-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 1px solid;
  border-color: rgba(205,164,94,0.4);
}
.item-modal-backdrop.open {
  display: flex;
}

.item-modal {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1100px;
  height: 720px;
  max-height: 90vh;
  background: #161616;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

/* CLOSE BUTTON */
.item-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s;
}
.item-modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* LEFT — IMAGE HALF */
.item-modal-left {
  width: 46%;
  flex-shrink: 0;
  height: 100%;
  background: #181818;
}
.item-modal-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.item-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.item-modal-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: #1a1a1a;
}
.item-modal-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden; /* zoom hone pe image bahar na nikle */
}

#itemModalImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.item-modal-img-wrap:hover #itemModalImage {
  transform: scale(1.08);
}

/* RIGHT — CONTENT HALF */
.item-modal-right {
  width: 54%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Scrollable content area (everything except footer) */
.item-modal-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 28px 32px 8px;
}

.item-modal-info {
  margin-bottom: 22px;
  padding-right: 40px; /* keep clear of close button */
}
.item-modal-title {
  font-family: 'Inter';
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.item-modal-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 12px;
}
.item-modal-base-price {
  font-size: 22px;
  font-weight: 700;
  color: #d4af37;
}
.item-modal-base-price .old-price {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
  margin-left: 8px;
}

/* ADDON / VARIANT GROUPS — always expanded, bordered rows */
.item-modal-addons {
  flex: 1;
}
.addon-group {
  margin-bottom: 26px;
}
.addon-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.addon-group-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.addon-required-badge,
.addon-optional-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.addon-required-badge {
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.35);
}
.addon-optional-badge {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Always visible, no accordion collapse */
.addon-group-body {
  display: block;
}

.addon-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.02);
}
.addon-option:last-child { margin-bottom: 0; }
.addon-option:hover {
  border-color: rgba(212, 175, 55, 0.4);
}
.addon-option.selected {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.08);
}

.addon-option-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.addon-option-name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.addon-option-price {
  font-size: 13px;
  font-weight: 600;
  color: #d4af37 !important;
}
.addon-option.selected .addon-option-price {
  color: #d4af37;
}

.addon-radio,
.addon-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.addon-radio { border-radius: 50%; }
.addon-checkbox { border-radius: 4px; }
.addon-option.selected .addon-radio,
.addon-option.selected .addon-checkbox {
  border-color: #d4af37;
  background: #d4af37;
}
.addon-option.selected .addon-radio::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #161616;
}
.addon-option.selected .addon-checkbox::after {
  content: '✓';
  font-size: 11px;
  color: #161616;
  font-weight: 700;
}

/* SPECIAL INSTRUCTIONS */
.item-modal-instructions {
  padding-top: 6px;
  padding-bottom: 24px;
}
.item-modal-instructions label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 10px;
}
.item-modal-instructions label span {
  font-weight: 400;
  text-transform: none;
  color: rgba(255, 255, 255, 0.3);
}
.item-modal-instructions textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  padding: 12px 14px;
  resize: none;
  height: 80px;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}
.item-modal-instructions textarea:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.4);
}
.char-count {
  display: block;
  text-align: right;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 4px;
}

/* FOOTER — qty stepper + Add to Cart bar */
.item-modal-footer {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #161616;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.qty-btn:hover { background: rgba(255, 255, 255, 0.16); }
.qty-num {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  min-width: 16px;
  text-align: center;
}

.modal-add-cart-btn {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #d4af37, #f5d76e, #d4af37) !important;
  border: none;
  border-radius: 12px;
  padding: 16px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: #000;
  transition: 0.3s ease;
}
.modal-add-cart-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -120%;
  width: 40%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.85), transparent);
  transform: rotate(25deg);
  filter: blur(6px);
  animation: modalBtnShine 1.8s linear infinite;
  pointer-events: none;
}
@keyframes modalBtnShine {
  0%   { left: -120%; }
  100% { left: 150%; }
}
.modal-add-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(212,175,55,.45);
}
.modal-add-cart-btn:active {
  transform: scale(.98);
}
.modal-add-cart-btn #modalTotalPrice,
.modal-add-cart-btn .mac-label {
  color: #000;
  position: relative;
  z-index: 1;
}

/* ── MOBILE: stack image on top, content below ── */
@media (max-width: 768px) {
  .item-modal-backdrop { padding: 0; }
  .item-modal {
    flex-direction: column;
    max-width: 100%;
    height: 80%;
    max-height: 100%;
    border-radius: 0;
  }
  .item-modal-left,
  .item-modal-right {
    width: 100%;
  }
  .item-modal-left {
    height: 240px;
  }
  .item-modal-right {
    height: calc(100% - 240px);
  }
}
/* ── MOBILE FIX: Add to Cart button shouldn't wrap ── */
@media (max-width: 480px) {
  .item-modal-footer {
    padding: 14px 16px;
    gap: 10px;
  }

  .qty-control {
    gap: 10px;
  }
  .qty-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .qty-num {
    font-size: 15px;
  }

  .modal-add-cart-btn {
    padding: 12px 14px;
    font-size: 13px;
    white-space: nowrap;
    gap: 6px;
  }

  .modal-add-cart-btn #modalTotalPrice {
    font-size: 13px;
    white-space: nowrap;
  }

  .modal-add-cart-btn .mac-label {
    font-size: 13px;
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  .modal-add-cart-btn {
    padding: 12px 10px;
    font-size: 12px;
  }
  .modal-add-cart-btn #modalTotalPrice,
  .modal-add-cart-btn .mac-label {
    font-size: 12px;
  }
}

/* HERO */
.hero {
  position: relative; height: 480px; margin-top: 64px;
  background: linear-gradient(135deg, #1a0a00 0%, #0d0d0d 50%, #1a1200 100%);
  display: flex; align-items: center; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,169,110,0.12) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hero-tag { color: var(--gold); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.hero-title { font-family: 'Inter'; font-size: clamp(36px, 5vw, 64px); line-height: 1.1; margin-bottom: 16px; }
.gold { color: var(--gold); }
.hero-sub { color: var(--text-muted); font-size: 16px; margin-bottom: 28px; }
.hero-btn {
  display: inline-block;
  background: var(--gold); color: #000;
  padding: 12px 32px; border-radius: 8px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.hero-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* MENU SECTION */
.menu-section { padding: 48px 0 0px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.cat-section-banner {
  width: 100%;
  height: auto;
  aspect-ratio: 3.7 / 1;   /* ~970x260 jaisa wide banner, apni image k mutabiq adjust kar lena */
  object-fit: contain;
  border-radius: 20px;
  display: block;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .cat-section-banner {  /* mobile pe thora zyada height rakhne k liye */
    border-radius: 14px;
  }
}

/* CATEGORY TABS */
.cat-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cat-tab {
  background: var(--dark-3); color: var(--text-muted);
  border: 1px solid var(--border); padding: 8px 18px;
  border-radius: 24px; font-size: 14px; cursor: pointer;
  transition: all 0.2s; font-family: 'Inter', sans-serif;
}
.cat-tab:hover { border-color: var(--gold); color: var(--gold); }
.cat-tab.active { background: var(--gold); color: #000; border-color: var(--gold); font-weight: 600; }

/* MENU GRID */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.menu-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.menu-card:hover {
    border-color: rgba(205,164,94,0.4);
    background: rgba(255,255,255,0.07);
    transform: scale(1.05) !important;
}
.menu-card.hidden { display: none; }

.card-img-wrap { position: relative; height: 180px; overflow: hidden; background: var(--dark-4); }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.menu-card:hover .card-img-wrap img { transform: scale(1.05); }
.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  background: linear-gradient(135deg, var(--dark-4), var(--dark-3));
}
.featured-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--gold); color: #000;
  padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700;
}

.card-body { padding: 16px; }
.card-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.card-price { font-size: 18px; font-weight: 700; color: #E1BF4C !important; }

.add-btn {
  display: flex; align-items: center; gap: 5px;
  background: var(--gold); color: #000;
  border: none; padding: 7px 14px; border-radius: 7px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.add-btn:hover { background: var(--gold-light); }
.add-btn:active { transform: scale(0.95); }
.unavailable-tag { font-size: 12px; color: var(--text-muted); }

/* CART SIDEBAR */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed; top: 0; right: -420px; bottom: 0;
  width: 400px; background: var(--dark-2);
  border-left: 1px solid var(--border);
  z-index: 201; transition: right 0.35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.cart-sidebar.active { right: 0; }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.cart-header h2 { font-family: 'Inter', serif; font-size: 20px; }
.cart-close {
  background: var(--dark-4); border: 1px solid var(--border);
  color: var(--text); width: 32px; height: 32px;
  border-radius: 50%; cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cart-close:hover { background: var(--red); border-color: var(--red); }

.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 200px; color: var(--text-muted); gap: 10px; }
.cart-empty span { font-size: 48px; }

.cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; background: var(--dark-3);
  border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: 10px;
}
.ci-name { flex: 1; font-size: 14px; font-weight: 500; }
.ci-controls { display: flex; align-items: center; gap: 8px; }
.ci-btn {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--dark-4); border: 1px solid var(--border);
  color: var(--text); cursor: pointer; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.ci-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.ci-qty { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.ci-price { font-size: 14px; color: #E1BF4C; font-weight: 600; min-width: 70px; text-align: right; }

.cart-summary {
  padding: 20px 24px; border-top: 1px solid var(--border);
  background: var(--dark-3);
}
.summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; color: var(--text-muted); }
.summary-row.total { font-size: 17px; font-weight: 700; color: var(--text); border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px; }

.checkout-btn {
  width: 100%; margin-top: 16px;
  background: linear-gradient(135deg,#d4af37,#f5d76e,#d4af37); color: #000;
  border: none; padding: 14px; border-radius: 10px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.checkout-btn:active { transform: scale(0.98); }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* RESPONSIVE */
@media (max-width: 600px) {
  .cart-sidebar { width: 100%; right: -100%; }
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .hero { height: 360px; }
  .hero-title { font-size: 32px; }
}
/* ── UPSELL ───────────────────────────────── */
#cartUpsell {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.upsell-heading {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.upsell-heading span {
  font-size: 16px; font-weight: 700; color: var(--text);
}
.upsell-nav { display: flex; gap: 6px; }
.upsell-nav-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--dark-3); border: 1px solid var(--border);
  color: var(--text); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.upsell-nav-btn:hover { border-color: var(--gold); color: var(--gold); }
.upsell-sub {
  font-size: 11px; color: #888; margin-bottom: 10px;
}
#upsellTrack {
  display: flex; gap: 10px;
  overflow-x: auto; padding-bottom: 4px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
#upsellTrack::-webkit-scrollbar { display: none; }

.upsell-card {
  flex-shrink: 0; width: 120px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.upsell-card:hover { border-color: rgba(201,169,110,0.4); transform: translateY(-2px); }

.upsell-card-img-wrap {
  position: relative; width: 100%; height: 90px;
}
.upsell-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.upsell-card-emoji {
  height: 90px; display: flex;
  align-items: center; justify-content: center;
  font-size: 32px; background: var(--dark-4);
}
.upsell-card-add-overlay {
  position: absolute; bottom: 6px; right: 6px;
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg,#d4af37,#f5d76e,#d4af37); color: #000;
  border: none; font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; line-height: 1;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.upsell-card-add-overlay:hover { background: var(--gold-light); transform: scale(1.1); }

.upsell-card-info { padding: 8px; }
.upsell-card-price {
  font-size: 14px; color: #E1BF4C; font-weight: 700; margin-bottom: 2px;
}
/* .upsell-card-name {
  font-size: 11px; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
} */
.upsell-card-name {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3;
  font-size: 12px;
}
/* ═══════════════════════════════════════
   XANDERS-STYLE CARD — SPACIOUS VERSION
════════════════════════════════════════ */

/* Search bar */
.menu-search-wrap {
  background: #181818;
  padding: 12px 20px 16px;
  position: sticky;
  top: 56px;
  z-index: 98;
  border-bottom: 1px solid rgba(255,255,255,0.06);

}
.menu-search-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.menu-search-inner svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted, #9a8f7e);
  pointer-events: none;
}
.menu-search-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 99px;
  padding: 13px 24px 13px 48px;
  color: var(--text, #f3ede2);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.menu-search-input::placeholder { color: var(--text-muted, #9a8f7e); }
.menu-search-input:focus { border-color: var(--gold, #cda45e); }

/* Category section */
.cat-section { margin-bottom: 48px; }

.cat-section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text, #f3ede2);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Card grid — 2 columns, bigger cards */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 16px;
}

/* Card */
.menu-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 22px 20px 22px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  position: relative;
  min-height: 180px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.50s;
}
.menu-card:hover {
  border-color: rgba(205,164,94,0.4);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}
.menu-card.hidden { display: none !important; }

/* Left: text */
.card-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(205,164,94,0.15);
  color: var(--gold, #cda45e);
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
  width: fit-content;
  margin-bottom: 2px;
  letter-spacing: 0.03em;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text, #f3ede2);
  line-height: 1.35;
  margin: 0;
}

.card-desc {
  font-size: 13px;
  color: var(--text-muted, #9a8f7e);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-price {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--gold, #cda45e);
  margin-top: 10px;
}

/* Right: image + button */
.card-right {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-wrap {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-img-placeholder {
  font-size: 42px;
  line-height: 1;
}

/* Gold + button */
.add-btn-circle {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg,#d4af37,#f5d76e,#d4af37) !important;
  border: 2.5px solid var(--bg, #0c0a09);
  color: #0c0a09;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  transition: transform 0.15s, background 0.15s;
}
.add-btn-circle:hover {
  transform: scale(1.15);
  background: #e8c27a;
}

.unavailable-tag {
  font-size: 11px;
  color: var(--text-muted, #9a8f7e);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 99px;
  padding: 4px 12px;
  position: absolute;
  bottom: 2px;
  right: 2px;
  white-space: nowrap;
}

/* No results */
.no-results {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted, #9a8f7e);
  font-size: 14px;
  display: none;
}

/* Mobile */
@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; gap: 12px; }
  .menu-card { min-height: 180px; padding: 18px 16px; }
  .card-img-wrap { width: 95px; height: 95px; }
  .card-right { width: 95px; }
  .menu-search-wrap { top: 50px; }
}
/* ── FIX: Floating cart bar should go behind overlay when cart is open ── */
.floating-cart-bar {
  z-index: 40 !important;
}
.cart-overlay {
  z-index: 200 !important;
}
.cart-sidebar {
  z-index: 201 !important;
}

/* Hide floating bar completely while cart sidebar is open */
.cart-overlay.active ~ .floating-cart-bar,
body:has(.cart-sidebar.active) .floating-cart-bar {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.cat-section-header {
  text-align: center;
  margin-bottom: 36px;
}

.cat-section-title {
  font-size: 70px;
  font-weight: 800;
  color: #fff !important;
  margin-bottom: 10px;
  justify-content: center;
}
@media (max-width: 480px) {
  .cat-section-title {
  font-size: 50px;
}
}
.cat-section-tagline {
  font-size: 18px;
  color: var(--text-muted, #9a8f7e);
  font-style: italic;
}

/* ── LOAD MORE BUTTON ── */
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.load-more-btn {
  font-family: 'Inter';
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(205,164,94,0.35);
  color: #E1BF4C;
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 99px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.load-more-btn:hover:not(:disabled) {
  background: rgba(205,164,94,0.12);
  transform: translateY(-1px);
}

.load-more-btn:disabled {
  opacity: 0.6;
  cursor: default;
}

/* ═══════════════════════════════════════
   FOOTER
════════════════════════════════════════ */

/* ═══════════════════════════════════════
   FOOTER — xanders-style layout, dark/gold theme
════════════════════════════════════════ */
.site-footer {
  padding: 40px 20px 50px;
  margin-top: 60px;
}

.footer-card {
  max-width: 1800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #211a12 0%, #14110d 100%);
  border-radius: 28px;
  padding: 30px 60px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.footer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(205,164,94,0.10), transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(205,164,94,0.08), transparent 35%);
  pointer-events: none;
}

.footer-main-row {
  display: grid;
  grid-template-columns: 0.9fr 0.8fr 0.9fr 1fr 1.3fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
}

.footer-logo { height: 70px; width: auto; object-fit: contain; }

.footer-heading {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #E1BF4C;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-link {
  display: block;
  font-size: 14px;
  color: var(--text-muted, #9a8f7e);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s, transform 0.15s;
}
.footer-link:hover { color: #E1BF4C !important; transform: translateX(2px); }

.footer-phone-number {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text, #f3ede2);
  margin-bottom: 14px;
}

.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text, #f3ede2);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.footer-social-btn:hover {
  background: linear-gradient(135deg,#d4af37,#f5d76e,#d4af37) !important; border-color: var(--gold, #cda45e); color: #0c0a09;
  transform: translateY(-2px);
}

/* PHONE MOCKUP */
.footer-phone-block { display: flex; justify-content: center; }
.phone-mockup {
  width: 150px;
  height: 300px;
  background: #0a0908;
  border: 4px solid #2a2118;
  border-radius: 28px;
  position: relative;
  padding: 8px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.phone-notch {
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 50px; height: 14px;
  background: #2a2118;
  border-radius: 0 0 10px 10px;
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--bg-elev, #17130f);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.phone-screen-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  padding: 16px;
  text-align: center;
  font-size: 10px;
  color: var(--text-muted, #9a8f7e);
  line-height: 1.5;
}
.phone-screen-fallback code {
  font-size: 9px;
  color: var(--gold, #cda45e);
}

/* CTA block (replaces "Get The App") */
.footer-cta-block { display: flex; flex-direction: column; gap: 8px; }
.footer-cta-title { font-size: 22px; font-weight: 700; color: var(--text, #f3ede2); }
.footer-cta-sub { font-size: 13.5px; color: var(--text-muted, #9a8f7e); line-height: 1.6; max-width: 280px; }
.footer-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg,#d4af37,#f5d76e,#d4af37) !important;
  color: #0c0a09;
  font-weight: 700;
  font-size: 13.5px;
  padding: 11px 22px;
  border-radius: 99px;
  text-decoration: none;
  width: fit-content;
  margin-top: 6px;
  transition: transform 0.15s, background 0.15s;
}
.footer-cta-btn:hover { transform: translateY(-2px); background: #e8c27a; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 18px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--text-muted, #9a8f7e);
  position: relative;
  z-index: 1;
  text-align: center;
}
.footer-bottom-links { display: flex; align-items: center; gap: 10px; }
.footer-bottom-links a { color: var(--text-muted, #9a8f7e); text-decoration: none; }
.footer-bottom-links a:hover { color: #E1BF4C !important; }
.footer-divider { opacity: 0.4; }

/* Floating buttons */
.footer-search-fab, .footer-scroll-fab {
  position: fixed;
  bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg,#d4af37,#f5d76e,#d4af37) !important;
  color: #0c0a09;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 90;
  transition: transform 0.15s;
}
.footer-search-fab { left: 24px; }
.footer-scroll-fab { right: 24px; }
.footer-search-fab:hover, .footer-scroll-fab:hover { transform: scale(1.08); }

@media (max-width: 1000px) {
  .footer-main-row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-phone-block { display: none; }
}
@media (max-width: 600px) {
  .footer-card { padding: 36px 24px 0; border-radius: 20px; }
  .footer-main-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
/* img.footer-phone-img{
  width: 300px ;
} */
.footer-phone-img {
  width: 350px;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 25px 50px rgba(145, 145, 145, 0.5));
}
@media (max-width: 480px) {
  .footer-search-fab {
    bottom: 100px;
}
.footer-scroll-fab {
    right: 24px;
    bottom: 100px;
}
.site-footer {
    padding: 40px 20px 50px !important;
    margin-top: 60px !important;
    position: relative !important;
    top: -60px !important;
}
.footer-logo{
  height:55px;
}
}

/* ═══════════════════════════════════════
   MOBILE SIDE MENU
════════════════════════════════════════ */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 300px;
  max-width: 85vw;
  background: linear-gradient(160deg, #211a12 0%, #14110d 100%);
  border-left: 1px solid rgba(205,164,94,0.18);
  z-index: 301;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 28px;
  box-shadow: -10px 0 40px rgba(0,0,0,0.4);
}
.mobile-menu-panel.active {
  transform: translateX(0);
}

.mobile-menu-close {
  align-self: flex-end;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text, #f3ede2);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 30px;
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: linear-gradient(135deg,#d4af37,#f5d76e,#d4af37) !important; color: #0c0a09; }

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.mobile-menu-link {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text, #f3ede2);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.mobile-menu-link:hover {
  background: rgba(205,164,94,0.12);
  border-color: #E1BF4C;
  color: #E1BF4C;
  transform: translateX(-2px);
}

.mobile-menu-footer {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-muted, #9a8f7e);
  padding-top: 20px;
}
.mobile-menu-footer strong { color: #E1BF4C; }

body.mobile-menu-open { overflow: hidden; }
/* ── PAGE LOADER (skeleton) ────────────────── */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.page-loader.hidden {
  opacity: 0; visibility: hidden; pointer-events: none;
}

.skeleton-shimmer {
  background: linear-gradient(90deg, var(--dark-3) 25%, var(--dark-4) 50%, var(--dark-3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-nav {
  height: 64px; margin: 0 24px; margin-top: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--dark-3) 25%, var(--dark-4) 50%, var(--dark-3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-hero {
  height: 320px; margin: 16px 24px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--dark-3) 25%, var(--dark-4) 50%, var(--dark-3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-content {
  padding: 0 24px;
}
.skeleton-title {
  width: 220px; height: 24px; margin-bottom: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--dark-3) 25%, var(--dark-4) 50%, var(--dark-3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-subtitle {
  width: 320px; height: 14px; margin-bottom: 24px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--dark-3) 25%, var(--dark-4) 50%, var(--dark-3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.skeleton-card {
  height: 280px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--dark-3) 25%, var(--dark-4) 50%, var(--dark-3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
/* ── PROMO POPUP ──────────────────────────── */
.promo-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  z-index: 998;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.promo-popup-overlay.show { display: flex; }

.promo-popup-box {
  position: relative;
  max-width: 480px; width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  animation: promoIn 0.4s cubic-bezier(.4,0,.2,1);
}
@keyframes promoIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.promo-popup-link { display: block; }
.promo-popup-link img {
  width: 100%; height: auto; display: block;
}

.promo-popup-close {
  position: absolute; top: 12px; right: 12px;
  z-index: 10;
  width: 32px; height: 32px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.promo-popup-close:hover { background: rgba(231,76,60,0.8); }

@media (max-width: 480px) {
  .promo-popup-box { max-width: 100%; }
}
@media (max-width: 1440px) {
.hero-slider {
    height: 570px;
}
}

@media (max-width: 1366px) {
  .hero-slider {
    height: 550px;
}
}
@media (max-width: 1024px) {
  .hero-slider {
    height: 390px;
}
}
/* mobile responsive */
@media (max-width: 480px) {
  .menu-section{
  padding: 0px;
}

.site-footer {
    padding: 40px 20px 50px;
    margin-top: 60px;
    margin-bottom: -70px;
}
.ticket {
    width: 100% !important;
}
.floating-cart-bar.show {
    bottom: 24px;
}
}
.whatsapp-float-btn {
  position: fixed !important;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  z-index: 999999;
  transition: transform 0.2s ease;
}

.whatsapp-float-btn svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float-btn:hover {
  transform: scale(1.08);
}

/* Mobile — sirf size chota, position wahi rahegi */
@media (max-width: 768px) {
  .whatsapp-float-btn {
    width: 56px;
    height: 56px;
    bottom: 100px;
    left: 16px;
  }
  .whatsapp-float-btn svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
.navbar {
    top: 33px !important;
}
}
@media (max-width: 440px) {
.navbar {
    top: 33px !important;
}
}
@media (max-width: 380px) {
.navbar {
    top: 33px !important;
}
}
@media (max-width: 360px) {
.navbar {
    top: 33px !important;
}
}
