/* ==========================================================================
   CHAI GRILL - ULTRA LUXURY CINEMATIC STYLESHEET
   ========================================================================== */

/* Custom Fonts & Smooth Rendering */
* {
  box-sizing: border-box;
}

body {
  background-color: #060608;
  color: #f1f5f9;
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
  cursor: default;
}

/* 1. Custom Luxury Glow Cursor */
.custom-cursor-dot,
.custom-cursor-outline {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.custom-cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #d4af37;
  box-shadow: 0 0 12px #d4af37;
}

.custom-cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  transition: transform 0.15s ease-out, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

body:hover .custom-cursor-outline {
  opacity: 1;
}

/* 2. Golden Aurora Background Glows */
.aurora-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, rgba(249,115,22,0.06) 40%, transparent 70%);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  animation: floatSlow 12s ease-in-out infinite alternate;
}

@keyframes floatSlow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.1); }
  100% { transform: translate(-40px, 30px) scale(0.95); }
}

/* 3. Infinite Gold Marquee Ribbon */
.marquee-wrapper {
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: marqueeContinuous 24s linear infinite;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marqueeContinuous {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 4. Luxury 3D Glassmorphic Cards */
.luxury-glass-card {
  background: linear-gradient(135deg, rgba(26, 26, 36, 0.75) 0%, rgba(14, 14, 20, 0.85) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.luxury-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(212, 175, 55, 0.0) 40%,
    rgba(212, 175, 55, 0.15) 50%,
    rgba(212, 175, 55, 0.0) 60%,
    transparent 100%
  );
  transition: transform 0.8s ease;
  pointer-events: none;
}

.luxury-glass-card:hover::before {
  transform: translateX(100%);
}

.luxury-glass-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.2), 0 0 25px rgba(212, 175, 55, 0.1);
  transform: translateY(-6px);
}

/* 5. Animated Interactive Category Filter Tabs */
.category-pill {
  position: relative;
  background: rgba(18, 18, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.category-pill:hover {
  color: #f8fafc;
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.category-pill.active {
  background: linear-gradient(135deg, #d4af37 0%, #ca8a04 50%, #9a6700 100%);
  color: #060608;
  font-weight: 700;
  border-color: #fde047;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.45), 0 4px 12px rgba(0, 0, 0, 0.5);
  transform: scale(1.04);
}

/* 6. Glowing Badges & Flame Meter */
.flame-glow {
  filter: drop-shadow(0 0 6px rgba(249, 115, 22, 0.8));
  animation: flameFlicker 1.8s infinite alternate ease-in-out;
}

@keyframes flameFlicker {
  0% { transform: scale(1) rotate(-2deg); opacity: 0.9; }
  100% { transform: scale(1.1) rotate(2deg); opacity: 1; }
}

.pulse-badge {
  position: relative;
}

.pulse-badge::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: inherit;
  filter: blur(6px);
  opacity: 0.6;
  z-index: -1;
  animation: badgePulse 2.5s infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0.8; }
}

/* 7. Custom Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: #060608;
}
::-webkit-scrollbar-thumb {
  background: #1e1e28;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}
::-webkit-scrollbar-thumb:hover {
  background: #d4af37;
  box-shadow: 0 0 10px #d4af37;
}

/* =========================================================
   CHAI'S GRILL - RESPONSIVE / MOBILE EXPERIENCE
   ========================================================= */


/* ---------------------------------------------------------
   GLOBAL
--------------------------------------------------------- */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    min-width: 320px;
}

img {
    max-width: 100%;
    height: auto;
}

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

#main-header {
    transition:
        background-color 0.35s ease,
        padding 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

#main-header.header-scrolled {
    background-color: rgba(10, 10, 12, 0.97);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(212, 175, 55, 0.3);
}


/* ---------------------------------------------------------
   EXPERIENCE CARDS
   IMPORTANT:
   Cards are visible even if JS / GSAP fails.
--------------------------------------------------------- */

.exp-card,
.outlet-card-anim {
    opacity: 1;
    visibility: visible;
}


/* ---------------------------------------------------------
   MENU LOADING
--------------------------------------------------------- */

.menu-loading {
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.2s ease;
}


/* ---------------------------------------------------------
   MOBILE - TABLET
--------------------------------------------------------- */

@media (max-width: 1023px) {

    .custom-cursor-dot,
    .custom-cursor-outline {
        display: none !important;
    }

    .luxury-glass-card {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 767px) {

    body {
        overflow-x: hidden;
    }


    /* Header */

    #main-header {
        padding-top: 2px !important;
        padding-bottom: 0px !important;
    }


    #main-header > div:first-child {
    min-height: 0;
    padding-top: 2px;
    padding-bottom: 2px;
    }


    /* Logo */

    #main-header a.flex.items-center.gap-3 {
        gap: 8px;
        min-width: 0;
        margin-left: 30px;
    }


    #main-header a.flex.items-center.gap-3 i {
        font-size: 17px;
    }


    #main-header a.flex.items-center.gap-3
    .font-cinzel {
        font-size: 15px;
        letter-spacing: 0.12em;
        white-space: nowrap;
    }


    #main-header a.flex.items-center.gap-3
    span:last-child {
        font-size: 7px;
        letter-spacing: 0.12em;
    }


    /* Mobile menu */

    #mobile-drawer {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        padding-bottom: 18px;
    }


    #mobile-drawer a {
        display: block;
        padding: 12px 8px;
        border-bottom:
            1px solid rgba(255,255,255,0.06);
    }


    /* Main */

    main {
        padding-top: 120px !important;
    }


    /* Hero */

    #hero {
        min-height: auto;
        padding-top: 55px;
        padding-bottom: 70px;
    }


    #hero > div {
        gap: 45px;
    }


    .hero-title-reveal {
        max-width: 100%;
    }


    #hero h1 {
        font-size: clamp(
            2.15rem,
            10vw,
            3.5rem
        );
        line-height: 1.08;
    }


    #hero p {
        font-size: 14px;
        line-height: 1.7;
    }


    #hero .hero-title-reveal.flex {
        width: 100%;
    }


    #hero .hero-title-reveal.flex a {
        width: 100%;
        min-height: 52px;
    }


    /* Hero image */

    #hero img {
        height: 330px;
        object-fit: cover;
    }


    /* Floating hero badges */

    #hero .absolute.-top-4 {
        top: -12px;
        left: 4px;
        transform: scale(0.88);
        transform-origin: left top;
    }


    #hero .absolute.-bottom-4 {
        bottom: -12px;
        right: 4px;
        transform: scale(0.88);
        transform-origin: right bottom;
    }


    /* Counters */

    #hero .grid-cols-3 {
        gap: 10px;
    }


    #hero .grid-cols-3
    .font-cinzel {
        font-size: 25px;
    }


    #hero .grid-cols-3
    .text-xs {
        font-size: 8px;
        letter-spacing: 0.08em;
    }


    /* Aurora */

    .aurora-bg {
        width: 300px;
        height: 300px;
        filter: blur(60px);
    }


    /* Marquee */

    .marquee-content {
        animation-duration: 28s;
    }


    .marquee-wrapper {
        overflow: hidden;
    }


    .marquee-content span {
        white-space: nowrap;
        font-size: 9px;
    }


    /* Section spacing */

    section {
        scroll-margin-top: 80px;
    }


    #experience,
    #menu,
    #outlets,
    #reviews {
        padding-top: 70px;
        padding-bottom: 70px;
    }


    /* Section headings */

    section h2 {
        font-size: clamp(
            1.9rem,
            9vw,
            3rem
        );
        line-height: 1.15;
    }


    section .text-center {
        max-width: 100%;
    }


    /* Experience cards */

    #experience .grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }


    .exp-card {
        padding: 22px !important;
        border-radius: 22px;
    }


    .exp-card h3 {
        font-size: 18px;
    }


    .exp-card p {
        font-size: 13px;
    }


    /* Menu */

    #menuSearch {
        font-size: 14px;
        padding-top: 14px;
        padding-bottom: 14px;
    }


    #categoryTabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 5px 2px 12px;
        margin-left: -4px;
        margin-right: -4px;
        scrollbar-width: none;
    }


    #categoryTabs::-webkit-scrollbar {
        display: none;
    }


    #categoryTabs .category-pill {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 10px 17px;
        font-size: 9px;
    }


    /* Menu grid */

    #menuGrid {
        grid-template-columns: 1fr;
        gap: 18px;
    }


    .menu-item-card {
        padding: 14px !important;
        border-radius: 22px;
    }


    .menu-item-card .relative {
        height: 230px;
    }


    .menu-item-card h3 {
        font-size: 18px;
    }


    .menu-item-card .mt-6 {
        margin-top: 18px;
    }


    /* Outlets */

    #outlets .grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }


    .outlet-card-anim {
        padding: 20px !important;
    }


    /* Reviews */

    #reviews .grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }


    #reviews .luxury-glass-card {
        padding: 22px !important;
    }


    /* Modal */

    #bookingModal {
        padding: 12px;
        align-items: flex-start;
        overflow-y: auto;
    }


    #bookingModal > div {
        margin-top: 10px;
        margin-bottom: 10px;
        max-height: calc(100vh - 20px);
        overflow-y: auto;
        border-radius: 22px;
        padding: 22px 18px !important;
    }


    #bookingModal form {
        font-size: 12px;
    }


    #bookingModal .grid-cols-2 {
        grid-template-columns: 1fr;
    }


    #bookingModal input,
    #bookingModal select,
    #bookingModal textarea {
        font-size: 14px;
        min-height: 48px;
    }


    #bookingModal textarea {
        min-height: 80px;
    }


    /* Footer */

    footer {
        margin-top: 0;
    }


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


    /* Disable expensive hover effects */

    .luxury-glass-card:hover {
        transform: none;
        box-shadow:
            0 20px 40px -15px
            rgba(0, 0, 0, 0.8),
            inset 0 1px 0
            rgba(255,255,255,0.1);
    }


    .luxury-glass-card:hover::before {
        transform: none;
    }

}


/* ---------------------------------------------------------
   SMALL PHONES
--------------------------------------------------------- */

@media (max-width: 390px) {

    #main-header a.flex.items-center.gap-3
    .font-cinzel {
        font-size: 13px;
    }


    #main-header a.flex.items-center.gap-3
    span:last-child {
        font-size: 6px;
    }


    #hero h1 {
        font-size: 2rem;
    }


    #hero img {
        height: 290px;
    }


    #hero .absolute.-top-4,
    #hero .absolute.-bottom-4 {
        transform: scale(0.76);
    }


    #hero .grid-cols-3
    .font-cinzel {
        font-size: 21px;
    }


    .category-pill {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

}


/* ---------------------------------------------------------
   ACCESSIBILITY
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}

/* 9. Signature Speciality Cards */
.specialty-card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.specialty-card:hover {
  transform: translateY(-8px);
}
.specialty-count {
  text-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
}

/* =========================================================
   CHAI GRILL MENU — 3D COVERFLOW
   ========================================================= */


/* =========================================================
   MAIN MENU SECTION
   ========================================================= */

.chai-menu-section {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(212, 175, 55, 0.055),
            transparent 38%
        ),
        #08090a;
    isolation: isolate;
}


/* =========================================================
   BACKGROUND ATMOSPHERE
   ========================================================= */

.chai-menu-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    opacity: 0.28;
    z-index: -2;
}

.chai-menu-bg-glow--one {
    top: 8%;
    left: -260px;
    background: rgba(212, 175, 55, 0.16);
}

.chai-menu-bg-glow--two {
    top: 42%;
    right: -280px;
    background: rgba(255, 150, 40, 0.08);
}


.chai-menu-grid-texture {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    z-index: -1;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.35) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.35) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 15%,
            black 80%,
            transparent
        );
}


/* =========================================================
   CATEGORY PILLS
   ========================================================= */

.chai-menu-categories {
    position: relative;
    z-index: 20;
}


.category-pill {
    position: relative;

    color: rgba(255,255,255,0.58);

    background:
        rgba(255,255,255,0.025);

    border: 1px solid
        rgba(255,255,255,0.10);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.category-pill:hover {
    color: #f3d77b;

    border-color:
        rgba(212,175,55,0.38);

    background:
        rgba(212,175,55,0.055);

    transform:
        translateY(-2px);
}


.category-pill.active {
    color: #111;

    background:
        linear-gradient(
            135deg,
            #f4d77b,
            #c99c2e
        );

    border-color:
        rgba(244,215,123,0.85);

    box-shadow:
        0 8px 30px
        rgba(212,175,55,0.18);

    transform:
        translateY(-1px);
}


.category-pill.active::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -8px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #e8c75d;

    transform:
        translateX(-50%);

    box-shadow:
        0 0 12px
        rgba(232,199,93,0.75);
}


/* =========================================================
   COVERFLOW STAGE
   ========================================================= */

.cf-menu-stage {
    --cf-menu-spacing: 250px;

    position: relative;

    width: 100%;

    min-height: 720px;

    margin-top: 12px;

    padding:
        30px 0
        10px;

    perspective: 1500px;

    perspective-origin:
        center center;

    overflow: hidden;

    isolation: isolate;
}


.cf-menu-stage::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 760px;
    height: 420px;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(212,175,55,0.08),
            transparent 68%
        );

    pointer-events: none;

    z-index: -2;
}


.cf-menu-stage__glow {
    position: absolute;

    left: 50%;
    bottom: 85px;

    width: 580px;
    height: 100px;

    transform:
        translateX(-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(212,175,55,0.16),
            transparent 70%
        );

    filter: blur(18px);

    pointer-events: none;

    z-index: -1;
}


/* =========================================================
   STAGE HEADER
   ========================================================= */

.cf-menu-stage__head {
    position: relative;

    text-align: center;

    margin-bottom: 20px;

    z-index: 30;

    pointer-events: none;
}


.cf-menu-eyebrow {
    display: block;

    color:
        rgba(212,175,55,0.72);

    font-size: 9px;

    font-weight: 800;

    letter-spacing:
        0.32em;

    text-transform: uppercase;

    margin-bottom: 8px;
}


.cf-menu-title {
    margin: 0;

    color: #fff;

    font-family:
        "Cinzel",
        serif;

    font-size:
        clamp(
            22px,
            3vw,
            34px
        );

    font-weight: 700;

    letter-spacing:
        0.01em;

    text-shadow:
        0 5px 30px
        rgba(0,0,0,0.45);
}


/* =========================================================
   TRACK WRAPPER
   ========================================================= */

.cf-menu-track-wrap {
    position: relative;

    width: 100%;

    height: 495px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: visible;
}


/* =========================================================
   COVERFLOW TRACK
   ========================================================= */

.cf-menu-track {
    position: relative;

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    transform-style: preserve-3d;

    -webkit-transform-style:
        preserve-3d;

    touch-action: pan-y;

    user-select: none;

    -webkit-user-select: none;
}


/* =========================================================
   MENU CARD
   ========================================================= */

.cf-menu-card {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 310px;
    height: 430px;

    margin: 0;

    padding: 0;

    border: 0;

    outline: none;

    background: transparent;

    cursor: pointer;

    transform-origin:
        center center;

    transform-style:
        preserve-3d;

    -webkit-transform-style:
        preserve-3d;

    backface-visibility:
        hidden;

    -webkit-backface-visibility:
        hidden;

    translate:
        -50% -50%;

    transition:
        transform 0.65s
        cubic-bezier(
            0.22,
            0.61,
            0.36,
            1
        ),
        opacity 0.45s ease,
        filter 0.45s ease;

    will-change:
        transform,
        opacity;

    appearance: none;
    -webkit-appearance: none;
}


.cf-menu-card:focus-visible {
    outline:
        2px solid
        rgba(244,215,123,0.9);

    outline-offset: 8px;

    border-radius: 24px;
}


/* =========================================================
   CARD INNER IMAGE WRAPPER
   ========================================================= */

.cf-menu-card__image-wrap {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 24px;

    background:
        #161616;

    border:
        1px solid
        rgba(255,255,255,0.12);

    box-shadow:
        0 25px 70px
        rgba(0,0,0,0.42);

    transform:
        translateZ(0);

    transition:
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}


.cf-menu-card.is-active
.cf-menu-card__image-wrap {
    border-color:
        rgba(244,215,123,0.55);

    box-shadow:
        0 30px 90px
        rgba(0,0,0,0.58),

        0 0 45px
        rgba(212,175,55,0.12);
}


/* =========================================================
   IMAGE
   ========================================================= */

.cf-menu-card__image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    background:
        linear-gradient(
            135deg,
            #171717,
            #0d0d0d
        );

    transition:
        transform 0.8s
        cubic-bezier(
            0.22,
            0.61,
            0.36,
            1
        ),
        filter 0.6s ease;
}


.cf-menu-card:hover
.cf-menu-card__image {
    transform:
        scale(1.055);
}


.cf-menu-card:not(.is-active)
.cf-menu-card__image {
    filter:
        saturate(0.78)
        brightness(0.74);
}


.cf-menu-card.is-active
.cf-menu-card__image {
    filter:
        saturate(1.04)
        brightness(0.98);
}


/* =========================================================
   IMAGE GRADIENT
   ========================================================= */

.cf-menu-card__overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.02) 0%,
            rgba(0,0,0,0.03) 35%,
            rgba(0,0,0,0.12) 50%,
            rgba(0,0,0,0.72) 78%,
            rgba(0,0,0,0.97) 100%
        );
}


/* =========================================================
   CARD SHEEN
   ========================================================= */

.cf-menu-card__sheen {
    position: absolute;

    top: 0;
    left: -130%;

    width: 75%;
    height: 100%;

    z-index: 5;

    pointer-events: none;

    transform:
        skewX(-18deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.10),
            transparent
        );

    transition:
        left 0.9s
        cubic-bezier(
            0.22,
            0.61,
            0.36,
            1
        );
}


.cf-menu-card:hover
.cf-menu-card__sheen {
    left: 145%;
}


/* =========================================================
   PRICE
   ========================================================= */

.cf-menu-card__price {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 8;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 64px;

    padding:
        7px 11px;

    border-radius:
        999px;

    color: #17120a;

    background:
        linear-gradient(
            135deg,
            #f4d77b,
            #c99c2e
        );

    box-shadow:
        0 8px 25px
        rgba(0,0,0,0.28);

    font-size: 12px;

    font-weight: 900;

    letter-spacing:
        0.01em;
}


/* =========================================================
   DIET BADGE
   ========================================================= */

.cf-menu-card__diet {
    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 8;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding:
        7px 10px;

    border-radius:
        999px;

    font-size: 8px;

    font-weight: 900;

    letter-spacing:
        0.12em;

    text-transform:
        uppercase;

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);
}


.cf-menu-card__diet--veg {
    color:
        #8ff0b1;

    background:
        rgba(30,120,70,0.34);

    border:
        1px solid
        rgba(100,220,140,0.25);
}


.cf-menu-card__diet--nonveg {
    color:
        #ffaaa0;

    background:
        rgba(130,35,35,0.34);

    border:
        1px solid
        rgba(255,110,100,0.22);
}


/* =========================================================
   BESTSELLER BADGE
   ========================================================= */

.cf-menu-card__bestseller {
    position: absolute;

    left: 50%;

    top: 56px;

    transform:
        translateX(-50%);

    z-index: 8;

    white-space: nowrap;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding:
        6px 10px;

    border-radius:
        999px;

    color:
        #f5db83;

    background:
        rgba(12,12,12,0.64);

    border:
        1px solid
        rgba(212,175,55,0.24);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

    font-size: 8px;

    font-weight: 900;

    letter-spacing:
        0.13em;

    text-transform:
        uppercase;
}


.cf-menu-card__bestseller i {
    font-size: 8px;
}


/* =========================================================
   CARD CAPTION
   ========================================================= */

.cf-menu-card__caption {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 7;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    padding:
        0 20px
        22px;
}


/* =========================================================
   CATEGORY NAME
   ========================================================= */

.cf-menu-card__category {
    display: block;

    margin-bottom: 6px;

    color:
        rgba(244,215,123,0.76);

    font-size: 8px;

    font-weight: 900;

    letter-spacing:
        0.25em;

    text-transform:
        uppercase;

    overflow: hidden;

    max-width: 100%;

    text-overflow:
        ellipsis;

    white-space:
        nowrap;
}


/* =========================================================
   ITEM NAME
   ========================================================= */

.cf-menu-card__name {
    display: block;

    width: 100%;

    color: #fff;

    font-family:
        "Cinzel",
        serif;

    font-size:
        clamp(
            16px,
            2vw,
            21px
        );

    font-weight: 700;

    line-height: 1.2;

    letter-spacing:
        0.01em;

    text-shadow:
        0 3px 18px
        rgba(0,0,0,0.75);

    display:
        -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient:
        vertical;

    overflow:
        hidden;
}


/* =========================================================
   PORTION
   ========================================================= */

.cf-menu-card__portion {
    display: block;

    margin-top: 7px;

    color:
        rgba(255,255,255,0.55);

    font-size: 9px;

    letter-spacing:
        0.08em;
}


/* =========================================================
   ACTIVE CARD EMPHASIS
   ========================================================= */

.cf-menu-card.is-active
.cf-menu-card__name {
    text-shadow:
        0 3px 25px
        rgba(0,0,0,0.9),
        0 0 20px
        rgba(212,175,55,0.12);
}


.cf-menu-card.is-active::after {
    content: "";

    position: absolute;

    left: 50%;

    bottom: -12px;

    width: 42%;

    height: 3px;

    transform:
        translateX(-50%);

    border-radius:
        999px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #e4c55f,
            transparent
        );

    filter:
        blur(0.2px);
}


/* =========================================================
   NAVIGATION BUTTONS
   ========================================================= */

.cf-menu-nav {
    position: absolute;

    top: 52%;

    z-index: 40;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 52px;
    height: 52px;

    padding: 0;

    border-radius: 50%;

    color:
        rgba(255,255,255,0.82);

    background:
        rgba(14,14,14,0.68);

    border:
        1px solid
        rgba(255,255,255,0.13);

    box-shadow:
        0 12px 35px
        rgba(0,0,0,0.35);

    backdrop-filter:
        blur(15px);

    -webkit-backdrop-filter:
        blur(15px);

    cursor: pointer;

    transform:
        translateY(-50%);

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.cf-menu-nav:hover {
    color: #17120a;

    background:
        linear-gradient(
            135deg,
            #f4d77b,
            #c99c2e
        );

    border-color:
        rgba(244,215,123,0.8);

    box-shadow:
        0 14px 40px
        rgba(212,175,55,0.2);

    transform:
        translateY(-50%)
        scale(1.06);
}


.cf-menu-nav:active {
    transform:
        translateY(-50%)
        scale(0.95);
}


.cf-menu-nav--prev {
    left:
        clamp(
            12px,
            4vw,
            65px
        );
}


.cf-menu-nav--next {
    right:
        clamp(
            12px,
            4vw,
            65px
        );
}


.cf-menu-nav__icon {
    font-family:
        Arial,
        sans-serif;

    font-size: 35px;

    font-weight: 200;

    line-height: 1;

    margin-top: -3px;
}


.cf-menu-nav__label {
    display: none;
}


/* =========================================================
   DOTS
   ========================================================= */

.cf-menu-dots {
    position: absolute;

    left: 50%;

    bottom: 55px;

    transform:
        translateX(-50%);

    z-index: 40;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    max-width:
        min(
            80vw,
            600px
        );

    overflow: hidden;

    padding:
        4px 8px;
}


.cf-menu-dot {
    flex: 0 0 auto;

    width: 6px;
    height: 6px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.22);

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.cf-menu-dot:hover {
    background:
        rgba(244,215,123,0.6);

    transform:
        scale(1.25);
}


.cf-menu-dot.is-active {
    width: 24px;

    border-radius:
        999px;

    background:
        linear-gradient(
            90deg,
            #f4d77b,
            #c99c2e
        );

    box-shadow:
        0 0 14px
        rgba(212,175,55,0.35);
}


/* =========================================================
   INSTRUCTION
   ========================================================= */

.cf-menu-instruction {
    position: absolute;

    left: 50%;
    bottom: 18px;

    transform:
        translateX(-50%);

    z-index: 30;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color:
        rgba(255,255,255,0.32);

    font-size: 8px;

    font-weight: 700;

    letter-spacing:
        0.15em;

    text-transform:
        uppercase;

    white-space:
        nowrap;
}


.cf-menu-instruction > span:first-child {
    display: inline-flex;

    gap: 3px;

    color:
        rgba(244,215,123,0.55);
}


.cf-menu-instruction i {
    font-size: 8px;
}


/* =========================================================
   ACTIVE ITEM DETAIL
   ========================================================= */

.cf-menu-detail {
    position: relative;

    max-width: 900px;

    margin:
        -15px auto
        20px;

    padding:
        0 20px;

    z-index: 30;
}


.cf-menu-detail__inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        22px 26px;

    border-radius:
        20px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.015)
        );

    border:
        1px solid
        rgba(255,255,255,0.08);

    box-shadow:
        0 20px 55px
        rgba(0,0,0,0.22);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);
}


.cf-menu-detail__eyebrow {
    display: block;

    margin-bottom: 5px;

    color:
        rgba(212,175,55,0.68);

    font-size: 8px;

    font-weight: 900;

    letter-spacing:
        0.25em;

    text-transform:
        uppercase;
}


.cf-menu-detail__name {
    margin: 0;

    color: #fff;

    font-family:
        "Cinzel",
        serif;

    font-size:
        clamp(
            18px,
            2.5vw,
            26px
        );

    font-weight: 700;
}


.cf-menu-detail__description {
    max-width: 550px;

    margin:
        7px 0 0;

    color:
        rgba(255,255,255,0.47);

    font-size: 12px;

    line-height: 1.6;

    display:
        -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient:
        vertical;

    overflow:
        hidden;
}


.cf-menu-detail__right {
    flex: 0 0 auto;

    display: flex;

    align-items: center;

    gap: 15px;
}


.cf-menu-detail__price {
    color:
        #f4d77b;

    font-family:
        "Cinzel",
        serif;

    font-size:
        20px;

    font-weight: 800;

    white-space:
        nowrap;
}


/* =========================================================
   ORDER BUTTON
   ========================================================= */

.cf-menu-order {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 42px;

    padding:
        0 17px;

    border-radius:
        999px;

    border:
        1px solid
        rgba(212,175,55,0.38);

    color:
        #17120a;

    background:
        linear-gradient(
            135deg,
            #f4d77b,
            #c99c2e
        );

    font-size: 10px;

    font-weight: 900;

    letter-spacing:
        0.12em;

    text-transform:
        uppercase;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}


.cf-menu-order:hover {
    transform:
        translateY(-2px);

    filter:
        brightness(1.06);

    box-shadow:
        0 10px 30px
        rgba(212,175,55,0.2);
}


.cf-menu-order:active {
    transform:
        translateY(0)
        scale(0.97);
}


/* =========================================================
   LOADING
   ========================================================= */

.cf-menu-loading {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 14px;

    width: 100%;

    height: 100%;

    color:
        rgba(255,255,255,0.4);

    font-size: 10px;

    font-weight: 700;

    letter-spacing:
        0.18em;

    text-transform:
        uppercase;
}


.cf-menu-loader {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    border:
        2px solid
        rgba(255,255,255,0.08);

    border-top-color:
        #e4c55f;

    animation:
        cfMenuSpin
        0.85s
        linear
        infinite;
}


@keyframes cfMenuSpin {

    to {
        transform:
            rotate(360deg);
    }

}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.cf-menu-empty {
    position: relative;

    max-width: 420px;

    margin:
        -50px auto
        60px;

    text-align: center;

    padding:
        30px 20px;
}


.cf-menu-empty__icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 55px;
    height: 55px;

    margin:
        0 auto 15px;

    border-radius: 50%;

    color:
        rgba(244,215,123,0.8);

    background:
        rgba(212,175,55,0.08);

    border:
        1px solid
        rgba(212,175,55,0.16);
}


.cf-menu-empty h3 {
    margin: 0;

    color: #fff;

    font-family:
        "Cinzel",
        serif;

    font-size: 19px;
}


.cf-menu-empty p {
    margin:
        7px 0 0;

    color:
        rgba(255,255,255,0.4);

    font-size: 12px;
}


/* =========================================================
   ERROR STATE
   ========================================================= */

.cf-menu-error {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;

    text-align: center;

    color:
        rgba(255,255,255,0.5);
}


.cf-menu-error__icon {
    margin-bottom: 12px;

    color:
        rgba(255,110,100,0.75);

    font-size: 30px;
}


.cf-menu-error h3 {
    margin: 0;

    color: #fff;

    font-family:
        "Cinzel",
        serif;

    font-size: 19px;
}


.cf-menu-error p {
    margin-top: 7px;

    font-size: 12px;

    color:
        rgba(255,255,255,0.4);
}


/* =========================================================
   MOBILE — TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .cf-menu-stage {
        --cf-menu-spacing: 190px;

        min-height: 650px;
    }


    .cf-menu-track-wrap {
        height: 425px;
    }


    .cf-menu-card {
        width: 260px;
        height: 365px;
    }


    .cf-menu-nav {
        width: 46px;
        height: 46px;
    }


    .cf-menu-detail {
        margin-top: -5px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .chai-menu-section {
        min-height: auto;
    }


    .chai-menu-categories {
        flex-wrap: nowrap;

        justify-content: flex-start;

        overflow-x: auto;

        padding:
            3px 3px 12px;

        margin-left: -4px;
        margin-right: -4px;

        scrollbar-width: none;

        -webkit-overflow-scrolling:
            touch;
    }


    .chai-menu-categories::-webkit-scrollbar {
        display: none;
    }


    .category-pill {
        flex:
            0 0 auto;

        padding:
            10px 17px;
    }


    .cf-menu-stage {
        --cf-menu-spacing: 145px;

        min-height: 600px;

        margin-top: 0;

        padding-top: 15px;
    }


    .cf-menu-stage::before {
        width: 450px;
        height: 320px;
    }


    .cf-menu-stage__glow {
        width: 380px;
    }


    .cf-menu-stage__head {
        margin-bottom: 10px;
    }


    .cf-menu-track-wrap {
        height: 420px;
    }


    .cf-menu-card {
        width: 250px;
        height: 370px;
    }


    .cf-menu-card__image-wrap {
        border-radius: 20px;
    }


    .cf-menu-card__price {
        top: 13px;
        right: 13px;

        min-width: 55px;

        padding:
            6px 9px;

        font-size: 10px;
    }


    .cf-menu-card__diet {
        top: 13px;
        left: 13px;

        padding:
            6px 8px;

        font-size: 7px;
    }


    .cf-menu-card__bestseller {
        top: 50px;

        padding:
            5px 8px;

        font-size: 7px;
    }


    .cf-menu-card__caption {
        padding:
            0 15px
            18px;
    }


    .cf-menu-card__category {
        font-size: 7px;

        margin-bottom: 5px;
    }


    .cf-menu-card__name {
        font-size: 17px;
    }


    .cf-menu-card__portion {
        font-size: 8px;
    }


    .cf-menu-nav {
        top: 53%;

        width: 42px;
        height: 42px;
    }


    .cf-menu-nav--prev {
        left: 8px;
    }


    .cf-menu-nav--next {
        right: 8px;
    }


    .cf-menu-nav__icon {
        font-size: 29px;
    }


    .cf-menu-dots {
        bottom: 51px;

        max-width: 70vw;
    }


    .cf-menu-instruction {
        bottom: 15px;

        font-size: 7px;
    }


    .cf-menu-detail {
        margin:
            -5px auto
            15px;

        padding:
            0 10px;
    }


    .cf-menu-detail__inner {
        flex-direction: column;

        align-items: stretch;

        gap: 15px;

        padding:
            18px;
    }


    .cf-menu-detail__name {
        font-size: 19px;
    }


    .cf-menu-detail__description {
        font-size: 11px;
    }


    .cf-menu-detail__right {
        justify-content:
            space-between;

        width: 100%;
    }


    .cf-menu-detail__price {
        font-size: 18px;
    }


    .cf-menu-order {
        min-height: 40px;

        padding:
            0 15px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .cf-menu-stage {
        --cf-menu-spacing: 122px;

        min-height: 555px;
    }


    .cf-menu-track-wrap {
        height: 365px;
    }


    .cf-menu-card {
        width: 220px;
        height: 335px;
    }


    .cf-menu-nav {
        width: 38px;
        height: 38px;
    }


    .cf-menu-nav--prev {
        left: 4px;
    }


    .cf-menu-nav--next {
        right: 4px;
    }


    .cf-menu-nav__icon {
        font-size: 26px;
    }


    .cf-menu-card__name {
        font-size: 15px;
    }


    .cf-menu-card__caption {
        padding:
            0 12px
            15px;
    }


    .cf-menu-dots {
        bottom: 48px;
    }


    .cf-menu-instruction {
        display: none;
    }


    .cf-menu-detail__inner {
        padding:
            16px;
    }

}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 360px) {

    .cf-menu-stage {
        --cf-menu-spacing: 105px;
    }


    .cf-menu-card {
        width: 190px;
        height: 295px;
    }


    .cf-menu-nav {
        width: 34px;
        height: 34px;
    }


    .cf-menu-card__name {
        font-size: 14px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .cf-menu-card,
    .cf-menu-card__image,
    .cf-menu-card__sheen,
    .cf-menu-nav,
    .category-pill,
    .cf-menu-dot,
    .cf-menu-order {
        transition: none !important;
    }


    .cf-menu-loader {
        animation: none;
    }

}

/* =========================================================
   MENU CARD — IMAGE + NAME ONLY
   ========================================================= */

.cf-menu-card__caption {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 7;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 55px 20px 24px;

    text-align: center;

    background:
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.08) 20%,
            rgba(0, 0, 0, 0.55) 65%,
            rgba(0, 0, 0, 0.90) 100%
        );
}


/* ONLY ITEM NAME */

.cf-menu-card__name {
    display: block;

    width: 100%;

    color: #ffffff;

    font-family:
        "Cinzel",
        serif;

    font-size:
        clamp(18px, 2.2vw, 25px);

    font-weight: 700;

    line-height: 1.18;

    letter-spacing: 0.01em;

    text-align: center;

    text-shadow:
        0 3px 15px rgba(0, 0, 0, 0.95),
        0 5px 25px rgba(0, 0, 0, 0.8);

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* Active card name */

.cf-menu-card.is-active
.cf-menu-card__name {
    font-size:
        clamp(19px, 2.4vw, 27px);

    text-shadow:
        0 3px 18px rgba(0, 0, 0, 1),
        0 5px 30px rgba(0, 0, 0, 0.9);
}


/* Mobile */

@media (max-width: 767px) {

    .cf-menu-card__caption {
        padding:
            50px 15px 20px;
    }

    .cf-menu-card__name {
        font-size: 17px;
    }

}


/* Small mobile */

@media (max-width: 480px) {

    .cf-menu-card__caption {
        padding:
            45px 12px 17px;
    }

    .cf-menu-card__name {
        font-size: 15px;
    }

}


/* =========================================================
   HOMEPAGE MENU COVERFLOW
   IMAGE + ITEM NAME ONLY
   ========================================================= */


/* Main card */

.cf-menu-card {
    position: absolute;

    width: 310px;
    height: 430px;

    padding: 0;
    margin: 0;

    border: 0;
    outline: none;

    border-radius: 22px;

    overflow: hidden;

    background: #111118;

    cursor: pointer;

    transform-style: preserve-3d;

    backface-visibility: hidden;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.45);

    transition:
        transform 0.65s cubic-bezier(.22, .61, .36, 1),
        opacity 0.45s ease,
        box-shadow 0.45s ease;

    -webkit-tap-highlight-color: transparent;
}


/* Image wrapper */

.cf-menu-card__image-wrap {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: inherit;
}


/* Food image */

.cf-menu-card__image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.8s cubic-bezier(.22, .61, .36, 1),
        filter 0.6s ease;
}


/* Slight image treatment */

.cf-menu-card:not(.is-active)
.cf-menu-card__image {
    filter:
        brightness(0.72)
        saturate(0.9);
}


/* Active image */

.cf-menu-card.is-active
.cf-menu-card__image {
    filter:
        brightness(0.96)
        saturate(1.05);

    transform: scale(1.025);
}


/* Dark gradient at bottom */

.cf-menu-card__overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 45%,
            rgba(0, 0, 0, 0.12) 58%,
            rgba(0, 0, 0, 0.58) 76%,
            rgba(0, 0, 0, 0.94) 100%
        );
}


/* Premium light sheen */

.cf-menu-card__sheen {
    position: absolute;

    top: -20%;
    left: -75%;

    width: 45%;
    height: 150%;

    z-index: 4;

    pointer-events: none;

    opacity: 0;

    transform:
        rotate(18deg)
        translateX(0);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.14),
            transparent
        );

    transition:
        opacity 0.4s ease,
        transform 0.9s ease;
}


.cf-menu-card:hover
.cf-menu-card__sheen,
.cf-menu-card.is-active
.cf-menu-card__sheen {
    opacity: 1;

    transform:
        rotate(18deg)
        translateX(360%);
}


/* Item name area */

.cf-menu-card__caption {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 5;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    min-height: 125px;

    padding:
        50px 22px
        24px;

    text-align: center;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.08) 20%,
            rgba(0, 0, 0, 0.55) 58%,
            rgba(0, 0, 0, 0.92) 100%
        );
}


/* Item name */

.cf-menu-card__name {
    display: -webkit-box;

    width: 100%;

    overflow: hidden;

    color: #fff;

    font-family:
        "Cinzel",
        serif;

    font-size:
        clamp(19px, 2vw, 26px);

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 0.025em;

    text-align: center;

    text-transform: uppercase;

    text-shadow:
        0 3px 12px rgba(0, 0, 0, 0.95),
        0 5px 25px rgba(0, 0, 0, 0.8);

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* Active card */

.cf-menu-card.is-active {

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(212, 175, 55, 0.28),
        0 0 35px rgba(212, 175, 55, 0.12);
}


.cf-menu-card.is-active
.cf-menu-card__name {
    font-size:
        clamp(20px, 2.15vw, 28px);

    text-shadow:
        0 3px 15px rgba(0, 0, 0, 1),
        0 5px 30px rgba(0, 0, 0, 0.9);
}


/* Hover */

.cf-menu-card:hover {
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.65);
}


/* Focus */

.cf-menu-card:focus-visible {

    outline:
        2px solid #d4af37;

    outline-offset: 5px;
}


/* =========================================================
   HOMEPAGE COVERFLOW TRACK
   ========================================================= */

.cf-menu-track-wrap {

    position: relative;

    height: 495px;

    width: 100%;

    overflow: hidden;

    perspective: 1400px;

    perspective-origin: 50% 45%;
}


.cf-menu-track {

    position: relative;

    width: 100%;
    height: 100%;

    transform-style: preserve-3d;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .cf-menu-card {

        width: 250px;
        height: 370px;

        border-radius: 19px;
    }


    .cf-menu-track-wrap {

        height: 420px;
    }


    .cf-menu-card__caption {

        min-height: 110px;

        padding:
            42px 16px
            19px;
    }


    .cf-menu-card__name {

        font-size: 17px;

        line-height: 1.18;

        letter-spacing: 0.02em;
    }


    .cf-menu-card.is-active
    .cf-menu-card__name {

        font-size: 19px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .cf-menu-card {

        width: 220px;
        height: 335px;

        border-radius: 17px;
    }


    .cf-menu-track-wrap {

        height: 385px;
    }


    .cf-menu-card__caption {

        min-height: 95px;

        padding:
            36px 13px
            16px;
    }


    .cf-menu-card__name {

        font-size: 15px;
    }


    .cf-menu-card.is-active
    .cf-menu-card__name {

        font-size: 17px;
    }

}

/* =========================================================
   FIX — KEEP MENU HEADING & CATEGORIES ABOVE COVERFLOW
   ========================================================= */

/* Category buttons must always stay above the cards */
.chai-menu-categories {
    position: relative;
    z-index: 1000 !important;
}

/* Category status text */
.chai-menu-section > .text-center {
    position: relative;
    z-index: 1000;
}

/* Coverflow heading stays above 3D cards */
.cf-menu-stage__head {
    position: relative;
    z-index: 1000 !important;
    isolation: isolate;
}

/* Keep the coverflow cards inside their own visual layer */
.cf-menu-track-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Cards stay below the heading */
.cf-menu-track {
    position: relative;
    z-index: 1;
}

/* Do not allow a card to create a higher layer than the heading */
.cf-menu-card {
    z-index: 1;
}

/* JS will still change z-index for the coverflow itself,
   but the whole track remains below the heading */

/* =====================================================
   FLOATING PROMO VIDEO WIDGET
====================================================== */
.promo-video-widget {
    position: fixed;
    bottom: 16px;
    right: 20px;
    width: 140px;
    aspect-ratio: 9 / 16;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(212, 175, 55, 0.35);
    z-index: 60;
    background: #000;
    animation: promoVideoIn 0.5s ease-out;
}

@media (min-width: 768px) {
    .promo-video-widget {
        width: 190px;
        bottom: 24px;
        right: 32px;
    }
}

@keyframes promoVideoIn {
    from { opacity: 0; transform: translateY(30px) scale(0.9); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

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

.promo-video-widget__close,
.promo-video-widget__mute,
.promo-video-widget__expand {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(4px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease;
}

.promo-video-widget__close:hover,
.promo-video-widget__mute:hover,
.promo-video-widget__expand:hover {
    background: rgba(212, 175, 55, 0.85);
    color: #111;
}

.promo-video-widget__close { top: 5px; right: 5px; }
.promo-video-widget__mute  { top: 5px; left: 5px; }
.promo-video-widget__expand { bottom: 5px; right: 5px; }

.promo-video-widget.hidden { display: none; }

/* =====================================================
   PAGE PRELOADER
====================================================== */
.page-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-preloader__inner {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-preloader__logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.55));
    animation: preloaderPulse 1.4s ease-in-out infinite;
    z-index: 1;
}

.page-preloader__ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(212, 175, 55, 0.18);
    border-top-color: #d4af37;
    border-radius: 50%;
    animation: preloaderSpin 1s linear infinite;
}

@keyframes preloaderSpin {
    to { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(0.92); opacity: 0.75; }
}

/* =====================================================
   PREVENT HORIZONTAL SCROLL / SWIPE
====================================================== */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

img, video {
    max-width: 100%;
    height: auto;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* =====================================================
   MOBILE INLINE SCROLLABLE NAV
   (replaces hamburger drawer)
====================================================== */
.mobile-nav-scroll {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 6px 16px 10px;
    margin-top: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

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

.mobile-nav-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.mobile-nav-link.is-active {
    color: #17120a;
    background: linear-gradient(135deg, #f4d77b, #c99c2e);
    border-color: rgba(244, 215, 123, 0.85);
    font-weight: 800;
}

.mobile-nav-hot {
    font-size: 8px;
    padding: 2px 5px;
    border-radius: 5px;
    background: rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.mobile-nav-link.is-active .mobile-nav-hot {
    background: rgba(23, 18, 10, 0.15);
    color: #17120a;
    border-color: rgba(23, 18, 10, 0.2);
}

/* ==========================================================================
   PREMIUM ENHANCEMENT PACK — Extra 3D Depth, Motion & Shimmer
   ========================================================================== */

/* 1. Scroll Progress Bar */
.scroll-progress-track {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 60;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #d4af37 0%, #f97316 50%, #d4af37 100%);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
  transition: width 0.1s ease-out;
}

/* 2. Hero 3D Perspective Stack */
.hero-3d-perspective {
  perspective: 1400px;
}

.hero-3d-stack {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.2s ease-out;
}

/* 3. Orbiting Glow Rings Around Hero Visual */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.25);
  pointer-events: none;
  z-index: 0;
}

.orbit-ring--one {
  width: 115%;
  height: 115%;
  animation: orbitSpin 22s linear infinite;
}

.orbit-ring--two {
  width: 130%;
  height: 130%;
  border-color: rgba(239, 68, 68, 0.18);
  animation: orbitSpin 30s linear infinite reverse;
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 4. Shimmer Sweep on Gradient Hero Text */
.shimmer-text {
  background-size: 200% auto;
  animation: shimmerSweep 4s linear infinite;
}

@keyframes shimmerSweep {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* 5. Extra 3D Glow Layer for Specialty Cards */
.glow-3d-card {
  transform-style: preserve-3d;
  position: relative;
}

.glow-3d-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.6), transparent 40%, transparent 60%, rgba(239, 68, 68, 0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.glow-3d-card:hover::after {
  opacity: 1;
}

/* 6. Magnetic CTA Buttons */
.magnetic-btn {
  will-change: transform;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 7. Scroll Cue Indicator (bottom of hero) */
.scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(212, 175, 55, 0.75);
  text-decoration: none;
  z-index: 5;
  animation: scrollCueFade 2.5s ease-in-out infinite;
}

.scroll-cue__mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(212, 175, 55, 0.55);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-cue__wheel {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: #d4af37;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.8);
  animation: scrollCueWheel 1.8s ease-in-out infinite;
}

.scroll-cue__label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
}

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

@keyframes scrollCueFade {
  0%, 100% { opacity: 0.55; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, -6px); }
}

@media (max-width: 1023px) {
  .scroll-cue { display: none; }
}

/* 8. Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .orbit-ring,
  .shimmer-text,
  .scroll-cue,
  .scroll-cue__wheel,
  .aurora-bg,
  .marquee-content {
    animation: none !important;
  }
}

/* =========================================================
   HERO HEADING — CONTROLLED 2-LINE MOBILE LAYOUT
========================================================= */

.hero-main-heading {
    width: 100%;
}

.hero-heading-line {
    display: block;
    white-space: nowrap;
}


/* =========================================================
   REDUCE NAVBAR → HERO GAP
========================================================= */

@media (max-width: 767px) {

    /* Reduce the extra space added below the fixed navbar */
    main {
        padding-top: 92px !important;
    }

    /* Bring hero content closer to navbar */
    #hero {
        padding-top: 18px !important;
    }

    /* Keep the heading exactly two lines */
    .hero-main-heading {
        font-size: clamp(
            1.75rem,
            7.5vw,
            2.15rem
        ) !important;

        line-height: 1.04 !important;
        letter-spacing: -0.025em;
    }

    .hero-heading-line {
        white-space: nowrap;
    }

    /* Slightly reduce spacing around the heading */
    #hero .left-hero-typography,
    #hero .hero-title-reveal {
        margin-top: 0;
    }

    /* Reduce space between tagline and heading */
    #hero p.font-cinzel {
        margin-bottom: 8px;
    }

}

/* Reduce desktop hero heading size */
@media (min-width: 768px) {
    .hero-main-heading {
        font-size: clamp(3rem, 5vw, 5rem) !important;
        line-height: 1.05 !important;
    }
}