/* ZERONAUT GEPREK - PREMIUM PARALLAX CSS DESIGN SYSTEM */

@font-face {
    font-family: 'Chinese Rocks';
    src: url('assets/chinese rocks rg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Variables */
:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #121212;
    --accent: hsl(0, 85%, 55%);
    --accent-hover: hsl(0, 85%, 45%);
    --text-white: #ffffff;
    --text-off-white: #f5f5f7;
    --text-muted: #8e8e93;
    --border-color: #1f1f1f;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Anton', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-off-white);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    background-color: var(--bg-primary);
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* Loading Overlay */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-content {
    text-align: center;
    width: 320px;
    max-width: 90%;
}

.loader-logo {
    height: 80px;
    /* Scale the logo nicely for the loading screen */
    width: auto;
    margin: 0 auto 1.5rem auto;
    /* Center and add gap below it */
    display: block;
    object-fit: contain;
}

.loader-brand {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: var(--text-white);
    margin-bottom: 2rem;
}

.loader-bar-container {
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background-color: var(--accent);
    transition: width 0.1s ease-out;
}

.loader-percentage {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* Sticky Navigation Bar */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    /* Initially hidden for smooth scroll-in when reaching the product section */
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.main-header.visible {
    transform: translateY(0);
    opacity: 1;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0.75rem 4rem; /* Shortened padding from 1.5rem to 0.75rem to make navbar sleeker */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
    /* Space between logo image and brand name */
}

.brand-logo img {
    height: 48px; /* Shortened logo height slightly from 60px to 48px */
    /* Height of the logo image */
    width: auto;
    /* Auto width preserves correct aspect ratio */
    display: block;
    object-fit: contain;
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(to right, #ff1a1a, #ff8c00, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ff3c00;
}

/* Hero Section (Canvas Frame Controller Container) */
.hero-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 10;
    pointer-events: auto;
    /* Enable pointer interactions in split hero layout */
    background-color: var(--bg-primary);
    /* Solid black */
}

/* Dark gradient overlay to make text readable over the background sequence */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Split Layout Grid Container */
.hero-grid-container {
    max-width: 1600px;
    /* Expanded layout limits to support massive canvas */
    height: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Equal columns for left-text and right-nav */
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 3;
}

/* Left Column Styling */
.hero-left-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left-content {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.variant-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.variant-content.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.reveal-word {
    display: inline-block;
    opacity: 0.15;
    /* Base dimmed state */
    transition: opacity 0.15s ease;
}

.overlay-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--accent);
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-brand-logo {
    height: 150px;
    /* Balanced height for the hero brand logo */
    width: auto;
    display: block;
    object-fit: contain;
}

.overlay-title {
    font-family: var(--font-display);
    font-weight: 400;
    /* Anton is a display font and typically only has normal weight (400) */
    font-size: 4.5rem;
    /* Slightly larger to fit Anton display size beautifully */
    line-height: 0.95;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-shadow: #000000 10px 10px;
}

.overlay-subtitle {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.overlay-description {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 2rem;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
}

/* Right Column Styling */
.hero-right-col {
    display: flex;
    justify-content: flex-end;
    /* Align variant controls to the right edge */
    align-items: center;
    width: 100%;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    z-index: 1;
    /* Behind grid content and dark overlay */
}

/* Right-Side Variant Navigation (Positioned vertically next to the canvas) */
.hero-right-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
    flex-shrink: 0;
    opacity: 0;
    pointer-events: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-outline {
    border: 1px solid var(--text-white);
    color: var(--text-white);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--bg-primary);
}

.btn-solid {
    background-color: var(--accent);
    color: var(--bg-primary);
    border: 1px solid var(--accent);
}

.btn-solid:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--bg-primary);
}

/* Variant Index Number (Adjusted scale for split view navigation) */
.variant-index {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.331);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.variant-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.variant-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0.5rem;
}

.variant-btn:hover {
    color: var(--text-white);
}

.variant-line {
    width: 1px;
    height: 60px;
    background-color: var(--border-color);
}

/* Scroll Track Spacer (Drives ScrollTrigger Frame Mapping) */
.scroll-track-spacer {
    height: 400vh;
    background: transparent;
    pointer-events: none;
}

/* Below the fold Section Layouts */
.content-section {
    position: relative;
    background-color: var(--bg-primary);
    padding: 10rem 2rem;
    z-index: 20;
    /* Elevates above canvas during regular scrolling */
}

.bg-charcoal {
    background-color: var(--bg-secondary);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tagline {
    display: block;
    font-family: 'Yesteryear', cursive;
    font-weight: 400;
    font-size: 2.2rem;
    color: var(--accent);
    letter-spacing: normal;
    margin-bottom: 0.5rem;
    text-transform: none;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text-white);
    margin-bottom: 4rem;
    text-transform: uppercase;
}

/* Premium Fiery 3D Text Shadow */
.title-3d {
    color: #ffffff;
    text-shadow:
        1px 1px 0px #ff2a2a,
        2px 2px 0px #cc1f1f,
        3px 3px 0px #991717,
        4px 4px 0px #660f0f,
        5px 5px 6px rgba(0, 0, 0, 0.9);
}

/* Interactive Product Section Layout */
.product-grid-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 4rem;
    position: relative;
}

.product-left-col {
    padding-top: 10vh;
    padding-bottom: 0;
    min-width: 0;
}

.product-left-col .menu-category:last-of-type {
    margin-bottom: 0;
}

.menu-category {
    margin: 15vh 0;
    opacity: 1;
    position: relative;
    /* Set to relative for absolute mascot positioning */
}

.category-header {
    margin-bottom: 2rem;
}

.category-tag {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.category-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--text-white);
    letter-spacing: -0.01em;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.menu-card {
    background-color: #fdc823;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.menu-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 42, 42, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.menu-image-container {
    width: 100%;
    aspect-ratio: 16/10;
    background-color: #f9f9f9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.menu-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-card:hover .menu-item-image {
    transform: scale(1.08);
}

.menu-card-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-title-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    gap: 0.25rem;
    width: 100%;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #121212;
}

.menu-item-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent);
}

.menu-item-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-menu-order {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid var(--accent);
    color: #ffffff;
    background-color: var(--accent);
    text-align: center;
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-menu-order:hover {
    background-color: #121212;
    border-color: #121212;
    color: #ffffff;
}

.product-order-btn {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

.product-order-btn:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--bg-primary);
}

.product-right-col {
    position: relative;
    height: 100%;
}

/* Background ingredients styling for Recommendation 1: Parallax Layer */
.product-bg-assets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    /* Sits behind text, but above background */
}

.bg-asset-item {
    position: absolute;
    pointer-events: none;
    opacity: 0.7;
    /* 100% solid opacity as requested */
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
    transform-origin: center;
}

/* Custom sizes and starting positions */
.asset-tomat-1 {
    width: 220px;
    top: 280px;
    left: 50%;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.asset-tomat-2 {
    width: 150px;
    top: 610px;
    right: 5%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.asset-tomat-3 {
    width: 125px;
    top: 1060px;
    left: 4%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.asset-bawang-1 {
    width: 170px;
    top: 1170px;
    right: 8%;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.asset-bawang-2 {
    width: 120px;
    top: 1450px;
    left: 4%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.asset-bawang-3 {
    width: 95px;
    top: 1820px;
    right: 5%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.asset-cabe-1 {
    width: 200px;
    top: 2180px;
    left: 2%;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.asset-cabe-2 {
    width: 150px;
    top: 2180px;
    right: 8%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.asset-cabe-3 {
    width: 160px;
    top: 1960px;
    left: 54%;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.asset-cabe-4 {
    width: 130px;
    top: 890px;
    left: 2%;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.asset-cabe-5 {
    width: 110px;
    top: 1620px;
    right: 10%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.anim-sticky-wrapper {
    position: sticky;
    top: 25vh;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

/* Thermometer Level Meter */
.thermometer-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 300px;
    position: relative;
    /* Set to relative for absolute children positioning */
}

/* Product Mascot next to the vertical scrolling thermometer line */
.product-scrolling-mascot {
    position: absolute;
    right: -85px;
    /* Positioned relative to the category cards. Adjust this offset to fit! */
    top: 62%;
    /* Align vertically next to the center of the cards */
    transform: translateY(-50%);
    width: 110px;
    /* Sizable, premium look */
    height: auto;
    z-index: 10;
    /* Float correctly alongside the card list */
    pointer-events: none;
}

.thermometer-track {
    position: relative;
    width: 10px;
    height: 100%;
    background-color: var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.thermometer-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    /* Scrubbed by GSAP */
    background: linear-gradient(to top, #ffcc00 0%, #ff1a1a 100%);
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.6);
}

.thermometer-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    background-color: rgba(255, 26, 26, 0.5);
    filter: blur(10px);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
}

.thermometer-levels {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-muted);
}

.thermometer-levels .lvl {
    transition: color 0.3s ease;
}

.thermometer-levels .lvl.active {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(255, 42, 42, 0.4);
}

/* Volcanic Smash Animation Container */
.anim-visual-container {
    position: relative;
    width: 320px;
    height: 320px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(0, 0, 0, 0.8);
}

.anim-element {
    position: absolute;
    width: auto;
    display: block;
    object-fit: contain;
}

.anim-chicken {
    bottom: 30px;
    height: 120px;
    z-index: 2;
    transform-origin: bottom center;
}

.anim-mortar {
    bottom: 210px;
    /* Suspended initially above the chicken */
    height: 130px;
    z-index: 3;
    transform-origin: bottom center;
}

/* Chili particles */
.chili-shower-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.chili-flake {
    position: absolute;
    width: 25px;
    height: auto;
    opacity: 0;
    top: -40px;
    transform-origin: center;
}

.chili-flake.flake-1 {
    left: 15%;
}

.chili-flake.flake-2 {
    left: 35%;
}

.chili-flake.flake-3 {
    left: 55%;
}

.chili-flake.flake-4 {
    left: 75%;
}

.chili-flake.flake-5 {
    left: 45%;
}

/* Volcanic heat overlay */
.volcanic-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom, rgba(255, 26, 26, 0.3) 0%, transparent 75%);
    opacity: 0;
    /* Animated in Phase 3 */
    pointer-events: none;
    z-index: 1;
}

/* Grids */
.grid-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.grid-three-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Text Styling */
.highlight-text {
    background: linear-gradient(to right, #ff1a1a, #ff8c00, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ff3c00;
    /* Fallback for unsupported browsers */
    text-shadow: none !important;
    /* Prevent parent text-shadow from rendering on top of the gradient */
}

.lead-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-off-white);
}

.body-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    color: #fff;
}



/* Reviews Section Layout Redesign */
#reviews {
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.reviews-path-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.reviews-svg-path {
    width: 100%;
    height: 100%;
    display: block;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    position: relative;
    z-index: 2;
}

.review-row {
    display: flex;
    width: 100%;
    position: relative;
}

.review-row.align-right {
    justify-content: flex-end;
}

.review-row.align-left {
    justify-content: flex-start;
}

.review-card-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 800px;
    width: 100%;
    transition: var(--transition-smooth);
}

/* Polaroid Card Style */
.review-photo-card {
    width: 180px;
    flex-shrink: 0;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 12px 20px 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    transition: var(--transition-smooth);
}

.card-budi {
    transform: rotate(-4deg);
    background-color: #fdc823;
}

.card-aulia {
    transform: rotate(5deg);
}

.card-daniel {
    transform: rotate(-3deg);
    background-color: #fdc823;
}

.review-photo-card:hover {
    transform: scale(1.08) rotate(0deg);
    box-shadow: 0 20px 40px rgba(255, 42, 42, 0.3);
}

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

.polaroid-photo {
    width: 156px;
    height: 156px;
    border-radius: 4px;
    object-fit: cover;
}

.placeholder-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
}

.avatar-red {
    background: linear-gradient(135deg, #ff1a1a 0%, #7a0000 100%);
}

.avatar-orange {
    background: linear-gradient(135deg, #ff8c00 0%, #802b00 100%);
}

.avatar-yellow {
    background: linear-gradient(135deg, #ffcc00 0%, #664d00 100%);
}

.polaroid-caption {
    font-family: 'Yesteryear', cursive;
    font-size: 1.5rem;
    color: #121212;
    margin-top: 12px;
    text-transform: none;
    font-weight: 400;
}

/* Chat Speech Bubble Style */
.review-bubble {
    position: relative;
    padding: 2.5rem;
    border-radius: 12px;
    /* Neobrutalism rounded block style */
    border: 4px solid #000000;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
    flex-grow: 1;
}

.review-bubble::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    border: 4px solid #000000;
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}

.align-right .review-bubble::before {
    left: -11px;
    border-right: none;
    border-top: none;
}

.align-left .review-bubble::before {
    right: -11px;
    border-left: none;
    border-bottom: none;
}

.review-bubble:hover {
    transform: translate(-4px, -4px);
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.review-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-off-white);
    margin-bottom: 1.5rem;
}

.review-author {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Custom testimonial bubble color variations */
.review-bubble.bubble-white {
    background-color: #ffffff;
    box-shadow: 8px 8px 0px #000000;
    /* Neobrutalism hard shadow */
}

.review-bubble.bubble-white::before {
    background-color: #ffffff;
}

.review-bubble.bubble-white:hover {
    box-shadow: 12px 12px 0px #000000;
    /* Neobrutalism expanded hover shadow */
}

.review-bubble.bubble-white .review-text {
    color: #121212;
}

.review-bubble.bubble-white .review-author {
    color: #555555;
}

/* Yellow variation for testimonial 2 */
.review-bubble.bubble-yellow {
    background-color: #fdc823;
    box-shadow: 8px 8px 0px #000000;
    /* Neobrutalism hard shadow */
}

.review-bubble.bubble-yellow::before {
    background-color: #fdc823;
}

.review-bubble.bubble-yellow:hover {
    box-shadow: 12px 12px 0px #000000;
    /* Neobrutalism expanded hover shadow */
}

.review-bubble.bubble-yellow .review-text {
    color: #121212;
}

.review-bubble.bubble-yellow .review-author {
    color: #333333;
}

/* FAQ Bento Grid Section */
.faq-bento-grid-container {
    position: relative;
    width: 100%;
    margin-top: 4rem;
    padding: 2rem 0;
}

/* FAQ Mascot Image */
.faq-mascot {
    position: absolute;
    top: -150px;
    /* Positioned vertically next to the section title and above Card 2 */
    right: 15%;
    /* Aligned with the right boundary of the bento grid */
    width: 300px;
    /* Sizable, premium look for the mascot */
    height: auto;
    z-index: 10;
    pointer-events: none;
    /* Make sure it doesn't obstruct click events */
    animation: floatMascot 4s ease-in-out infinite;
}

@keyframes floatMascot {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.faq-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Staggered grid column offset (even cards shifted down for a modern layout) */
.faq-bento-grid .faq-bento-card:nth-child(even) {
    margin-top: 5rem;
}

.faq-bento-card {
    background-color: rgba(18, 18, 18, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: default;
}

.faq-bento-card:hover {
    background-color: rgba(18, 18, 18, 0.9);
    border-color: rgba(255, 59, 48, 0.4);
    box-shadow: 0 15px 35px rgba(255, 59, 48, 0.15), 0 0 20px rgba(255, 149, 0, 0.08);
    transform: translateY(-8px);
}

.faq-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.faq-brand-logo {
    display: inline-block;
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
}

.faq-q-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4;
    color: var(--text-white);
}

.faq-card-body {
    position: relative;
}

.faq-a-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.faq-bento-card:hover .faq-a-text {
    color: var(--text-off-white);
}

/* Card 2: Top Right (Yellow highlight, hover just highlights, no translation) */
.faq-bento-card.faq-card-yellow-highlight {
    background-color: #fdc823;
    border-color: rgba(0, 0, 0, 0.08);
}

.faq-bento-card.faq-card-yellow-highlight:hover {
    background-color: #ffd03b;
    /* Highlighted yellow */
    transform: none;
    /* No vertical lift */
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(253, 200, 35, 0.25), 0 0 20px rgba(255, 149, 0, 0.15);
}

.faq-bento-card.faq-card-yellow-highlight .faq-q-text {
    color: #121212;
}

.faq-bento-card.faq-card-yellow-highlight .faq-a-text {
    color: #333333;
}

.faq-bento-card.faq-card-yellow-highlight:hover .faq-a-text {
    color: #000000;
}

/* Card 3: Bottom Left (White background) */
.faq-bento-card.faq-card-white {
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

.faq-bento-card.faq-card-white:hover {
    background-color: #ffffff;
    border-color: rgba(255, 59, 48, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 149, 0, 0.08);
}

.faq-bento-card.faq-card-white .faq-q-text {
    color: #121212;
}

.faq-bento-card.faq-card-white .faq-a-text {
    color: #555555;
}

.faq-bento-card.faq-card-white:hover .faq-a-text {
    color: #000000;
}

/* Footer styling */
.main-footer {
    background-color: #000000;
    border-top: 1px solid var(--border-color);
    padding: 6rem 2rem 4rem;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    width: 100%;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2.5rem;
    width: 100%;
}

.footer-address {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-address-label {
    font-family: monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffcc00;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-address-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 420px;
}

.footer-nav-copyright-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.25rem;
    text-align: right;
}

.footer-nav-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-off-white);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
}

.footer-nav-link:hover {
    color: #ffcc00;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.footer-divider-container {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0;
}

.footer-divider-line {
    width: 100%;
    border-top: 1px dashed rgba(255, 204, 0, 0.35);
}

.footer-divider-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--text-white);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.8);
}

.footer-giant-title-container {
    width: 100%;
    text-align: center;
    overflow: visible;
    perspective: 1000px;
    padding: 2rem 0;
    position: relative;
}

.footer-giant-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 12.5vw, 12.5rem);
    line-height: 0.9;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0 auto;
    user-select: none;
    position: relative;
    z-index: 2;
}

.footer-word {
    display: inline-block;
    white-space: nowrap;
}

.footer-word:nth-child(1) .footer-char {
    color: var(--text-off-white);
}

.footer-word:nth-child(2) .footer-char {
    background: linear-gradient(to right, #ff1a1a, #ff8c00, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ff3c00;
}

.footer-char {
    display: inline-block;
    transform-origin: center bottom;
    backface-visibility: hidden;
}

.footer-asset {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.65;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.footer-asset-cabe-1 {
    width: 120px;
    right: 10%;
    bottom: -15px;
    transform: rotate(20deg);
}

.footer-asset-bawang-1 {
    width: 70px;
    left: 16%;
    top: -20px;
    transform: rotate(-15deg);
}

.footer-asset-tomat-1 {
    width: 90px;
    left: 5%;
    bottom: -15px;
    transform: rotate(10deg);
}

.footer-asset-cabe-2 {
    width: 95px;
    left: 35%;
    top: -35px;
    transform: rotate(-45deg);
}

.footer-asset-bawang-2 {
    width: 75px;
    right: 28%;
    bottom: -20px;
    transform: rotate(35deg);
}

.footer-asset-tomat-2 {
    width: 85px;
    right: 40%;
    top: -30px;
    transform: rotate(-10deg);
}

.footer-asset-cabe-3 {
    width: 110px;
    right: 2%;
    top: -15px;
    transform: rotate(55deg);
}

.drinks-category .category-tag {
    font-family: 'Yesteryear', cursive;
    font-weight: 400;
    font-size: 2.2rem;
    letter-spacing: normal;
    text-transform: none;
    margin-bottom: 0.25rem;
}

/* Food Horizontal Scrolling Row */
.menu-horizontal-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.menu-horizontal-scroll::-webkit-scrollbar {
    height: 6px;
}

.menu-horizontal-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.menu-horizontal-scroll::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

.menu-horizontal-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

.menu-horizontal-scroll .menu-card {
    width: 240px;
    /* Fixed width to prevent shrinking and show 3 cards cleanly */
    flex-shrink: 0;
}

/* Drinks Filter Buttons */
.drinks-filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: rgba(18, 18, 18, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    padding: 0.5rem 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.filter-btn:hover {
    color: var(--text-white);
    border-color: rgba(253, 200, 35, 0.4);
    background-color: rgba(25, 25, 25, 0.8);
}

.filter-btn.active {
    background-color: #fdc823;
    border-color: #fdc823;
    color: #121212;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(253, 200, 35, 0.25);
}

/* Drinks Split Layout Option B */
.drinks-split-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Right side slightly wider for 3 columns of compact cards */
    gap: 2.5rem;
    align-items: start;
    margin-top: 2rem;
    position: relative;
    min-height: 560px;
    /* Pre-allocate height to minimize scroll trigger recalculation jumps */
}

/* Left Column - Sticky Showcase */
.drinks-showcase-col {
    position: sticky;
    top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    z-index: 5;
}

.chilled-glass-container {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1/1;
    background-color: transparent;
    border: none;
    border-radius: 24px;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    overflow: hidden;
}

.chilled-glow-effect {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.ice-float-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

/* Floating ice cubes in background */
.ice-float-cube {
    position: absolute;
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.05);
    animation: floatIce 8s infinite ease-in-out;
}

.ice-cube-1 {
    top: 20%;
    left: 15%;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.ice-cube-2 {
    bottom: 25%;
    right: 15%;
    transform: rotate(-25deg);
    animation-delay: 2s;
}

.ice-cube-3 {
    top: 70%;
    left: 20%;
    transform: rotate(45deg);
    animation-delay: 4.5s;
}

@keyframes floatIce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(15deg);
    }
}

.showcase-visual-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.active-drink-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(10px 15px 18px rgba(0, 0, 0, 0.3)); /* Premium drop shadow around the drink cup outline */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.drink-label-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
    pointer-events: none;
    z-index: 4;
}

/* Right Column - Menu List */
.drinks-list-col {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.drinks-list-scroll-container {
    position: relative;
    width: 100%;
}

.drinks-list-scroll-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
    pointer-events: none;
    z-index: 10;
}

.drinks-scroll-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns grid on desktop */
    gap: 0.6rem; /* Compact tight gaps */
    width: 100%;
    max-height: 480px;
    overflow-y: auto;
    padding: 0.25rem 6px 1rem 0.25rem; /* Padding for shadow overflow */
}

/* Custom Scrollbar for Drinks Wrapper */
.drinks-scroll-wrapper::-webkit-scrollbar {
    width: 5px;
}

.drinks-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 3px;
}

.drinks-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
    transition: background-color 0.2s;
}

.drinks-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: #fdc823;
}

/* Drink Cards Default (Charcoal Black) */
.drink-card {
    background-color: #121212; /* Black background by default */
    border: 1.5px solid #000000; /* Cleaner thinner border */
    border-radius: 12px; /* Slightly tighter border radius */
    padding: 0.75rem 0.5rem; /* Compact padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    cursor: pointer;
    box-shadow: 3px 3px 0px #000000; /* Sleeker, smaller flat shadow */
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                background-color 0.2s ease, 
                border-color 0.2s ease,
                color 0.25s ease;
}

/* Hover and Active states (Swap to brand yellow background and black text) */
.drink-card:hover,
.drink-card.active {
    background-color: #fdc823; /* Turns yellow */
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 5px 5px 0px #000000;
}

.drink-card-image-wrapper {
    width: 60px; /* Even smaller image size */
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    position: relative;
}

.drink-card-thumb {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.15));
    transition: transform 0.2s ease;
}

.drink-card:hover .drink-card-thumb,
.drink-card.active .drink-card-thumb {
    transform: scale(1.06) rotate(3deg);
}

.drink-card-info {
    width: 100%;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.drink-card-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem; /* Compact name size */
    color: #ffffff; /* White text by default */
    line-height: 1.2;
    transition: color 0.2s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 2.4em; /* Keeps layout aligned by giving exactly 2 lines height */
}

.drink-card:hover .drink-card-name,
.drink-card.active .drink-card-name {
    color: #121212; /* Black text when hovered/active */
}

.drink-card-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--accent); /* Yellow accent price by default */
    transition: color 0.2s ease;
}

.drink-card:hover .drink-card-price,
.drink-card.active .drink-card-price {
    color: #121212; /* Black price when hovered/active */
}

.drink-card-action {
    width: 100%;
    margin-top: auto;
}

/* Button overrides inside Default vs Active/Hovered Cards */
.drink-card .btn-add-to-cart {
    background-color: var(--accent); /* Yellow button by default */
    color: #121212;
    border: 1px solid var(--accent);
    padding: 0.35rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    width: 100%;
    height: 28px;
    line-height: 1;
}

.drink-card .btn-add-to-cart:hover {
    background-color: #ffffff;
    color: #121212;
    border-color: #ffffff;
}

.drink-card:hover .btn-add-to-cart,
.drink-card.active .btn-add-to-cart {
    background-color: #121212; /* Black button when hovered/active */
    color: #ffffff;
    border-color: #121212;
}

.drink-card:hover .btn-add-to-cart:hover,
.drink-card.active .btn-add-to-cart:hover {
    background-color: #ffffff;
    color: #121212;
    border-color: #ffffff;
}

/* Qty Controller style adaptations inside cards */
.drink-card .qty-controller {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    border-radius: 6px;
    overflow: hidden;
    height: 28px;
}

.drink-card:hover .qty-controller,
.drink-card.active .qty-controller {
    border-color: #121212;
}

.drink-card .qty-btn {
    background-color: #121212;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
    width: 22px;
    height: 100%;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drink-card .qty-number {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0 0.35rem;
    color: #ffffff;
    flex-grow: 1;
    text-align: center;
}


/* Responsive Rules for Drink Cards */
@media (max-width: 1200px) {
    .drinks-scroll-wrapper {
        grid-template-columns: repeat(3, 1fr); /* Fallback to 3 columns on smaller desktops */
    }
}

@media (max-width: 768px) {
    .drinks-split-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .drinks-scroll-wrapper {
        max-height: 480px;
        overflow-y: auto;
        padding-right: 6px;
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile screens */
        gap: 0.6rem;
    }

    .drinks-showcase-col {
        position: relative;
        top: 0;
        padding: 0;
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .chilled-glass-container {
        width: 100%;
        max-width: 280px;
        aspect-ratio: 1/1;
        height: auto;
        margin: 0 auto;
        padding: 1rem;
    }
}

/* About Us Section Styles */
.about-grid-container {
    display: flex;
    flex-direction: column;
    gap: 8vh;
}

.about-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-row.reverse-row {
    grid-template-columns: 0.9fr 1.1fr;
}

.about-text-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    /* Text sits in front of the floating chicken */
}

@media (min-width: 769px) {
    .about-row.reverse-row .about-text-col {
        padding-top: 5.5rem;
        /* Push the text block (subtitle + description) further down on desktop */
    }
}

.about-subtitle {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1.1;
    color: var(--text-white);
    text-transform: uppercase;
}

.about-img-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    /* Images sit behind floating chicken layer */
}

.about-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.about-img-wrapper:hover {
    border-color: rgba(255, 42, 42, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.04);
}

/* Chicken Spotlight Spots */
.chicken-spot {
    position: relative;
    width: 210px;
    height: 85px;
    border: 1px dashed rgba(255, 26, 26, 0.2);
    border-radius: 50%;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.05) 0%, transparent 70%);
}

.spot-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 42, 42, 0.1) 0%, transparent 60%);
    filter: blur(8px);
    opacity: 0.8;
    animation: spotPulse 4s infinite ease-in-out;
}

@keyframes spotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

.spot-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    pointer-events: none;
}

/* Floating Chicken Object */
.floating-chicken-obj {
    position: absolute;
    width: 240px;
    height: auto;
    z-index: 5;
    /* Melayang di atas background/gambar, tapi di belakang teks */
    pointer-events: none;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
    transform-origin: center center;
    display: block;
}

/* Slogan Quote Style */
.about-slogan-container {
    margin-top: 9.5rem;
    /* Push down slogan to align horizontally with Spot C */
}

.about-slogan {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2.2rem;
    line-height: 1.25;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-left: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
    text-shadow: none !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.slogan-word {
    display: inline-block;
    margin-right: 0.4rem;
}

.slogan-word.text-white {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
}

.slogan-word.text-red {
    color: #ff0000 !important;
    /* Pure solid red */
    background: none !important;
    -webkit-text-fill-color: #ff0000 !important;
}

/* Contact & Location Section (Neobrutalism Style) */
.contact-grid-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 4rem auto 0;
    padding: 0 1.5rem;
}

/* Map Card Styling */
.contact-map-card {
    position: relative;
    border: 4px solid #000000;
    border-radius: 12px;
    box-shadow: 8px 8px 0px #000000;
    background-color: #ffffff;
    height: 480px;
    overflow: hidden;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
}

.contact-map-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px #000000;
}

.contact-map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    filter: grayscale(1) invert(0.9) contrast(1.2);
    transition: filter 0.3s ease;
}

.contact-map-card:hover iframe {
    filter: grayscale(0.2) invert(0) contrast(1);
}

/* Contact Info Details list container */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Neobrutalism Info Cards styling */
.contact-info-card {
    padding: 2rem 2.25rem;
    border: 4px solid #000000;
    border-radius: 12px;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
    box-shadow: 8px 8px 0px #000000;
}

.contact-info-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px #000000;
}

.contact-info-card.card-white {
    background-color: #ffffff;
}

.contact-info-card.card-yellow {
    background-color: #fdc823;
}

/* Card inner item styles */
.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-icon-wrapper {
    width: 44px;
    height: 44px;
    background-color: #000000;
    border-radius: 8px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Brand-specific icon wrapper colors with neobrutalist borders */
.contact-icon-wrapper.icon-location {
    background-color: #ea4335;
    /* Google Maps Red */
    color: #ffffff;
    border: 2px solid #000000;
}

.contact-icon-wrapper.icon-hours {
    background-color: #4285f4;
    /* Google Maps Blue */
    color: #ffffff;
    border: 2px solid #000000;
}

.contact-icon-wrapper.icon-whatsapp {
    background-color: #25d366;
    /* WhatsApp Green */
    color: #ffffff;
    border: 2px solid #000000;
}

.contact-icon-wrapper.icon-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border: 2px solid #000000;
}

.contact-icon-wrapper.icon-tiktok {
    background-color: #010101;
    /* TikTok Black */
    color: #ffffff;
    border: 2px solid #000000;
}

/* TikTok stereoscopic silhouette filter */
.contact-icon-wrapper.icon-tiktok .contact-svg-icon {
    filter: drop-shadow(-1.5px -1.5px 0px #00f2fe) drop-shadow(1.5px 1.5px 0px #fe0979);
}

.contact-svg-icon {
    width: 22px;
    height: 22px;
}

.contact-text-content {
    flex-grow: 1;
}

.contact-card-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.contact-card-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333333;
}

.contact-link {
    color: #ff0000;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #000000;
    text-decoration: underline;
}

.contact-left-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-challenge-card {
    background-color: #121212;
    border: 4px solid #000000;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 8px 8px 0px #000000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}

.contact-challenge-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px #000000;
}

.challenge-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
}

.challenge-highlight {
    color: #fdc823;
    /* Bright brand yellow */
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: #ff0000;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 1.5rem 2rem;
    }

    .hero-grid-container {
        padding: 0 2rem;
        gap: 2.5rem;
    }

    .overlay-title {
        font-size: 3.2rem;
    }

    .content-section {
        padding: 8rem 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

@media (max-width: 768px) {
    .content-section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .hero-section {
        position: relative;
        background-image: url('assets/backgroundhp.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #hero-canvas {
        display: none !important;
    }

    .scroll-track-spacer {
        display: none;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-grid-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding: 5rem 1.5rem 2rem;
        box-sizing: border-box;
        position: relative;
        z-index: 10 !important;
    }

    .hero-left-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        z-index: 11 !important;
    }

    .hero-left-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        position: relative;
        z-index: 12 !important;
    }

    .variant-content.active {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 13 !important;
    }

    .hero-brand-logo {
        height: 80px;
        /* Smaller size for mobile screens */
        margin: 0 auto 1rem auto;
        /* Center the logo block */
    }

    .hero-right-col {
        display: none !important;
    }

    .canvas-showcase-wrapper {
        gap: 0;
        justify-content: center;
    }

    .canvas-container {
        max-width: 100%;
    }

    .overlay-brand {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .overlay-title {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.95), 0 0 5px rgba(255, 60, 0, 0.4) !important;
        font-size: 2.5rem;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .highlight-text {
        background: linear-gradient(to right, #ff1a1a, #ff8c00, #ffcc00);
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        color: #ff3c00 !important;
        text-shadow: none !important;
        display: inline-block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .overlay-subtitle {
        color: var(--accent) !important;
        -webkit-text-fill-color: var(--accent) !important;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9) !important;
        font-size: 0.95rem;
        font-weight: 700 !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .overlay-description {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9) !important;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        font-weight: 400 !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .hero-ctas {
        justify-content: center;
        gap: 1rem;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .hero-right-overlay {
        display: none;
        /* Hide variant navigation on mobile for clean spacing */
    }

    .grid-two-cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .grid-three-cols {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Responsive About Us Section */
    .about-grid-container {
        gap: 6vh;
    }

    .about-row,
    .about-row.reverse-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }



    .floating-chicken-obj {
        display: none !important;
        /* Hide floating chicken on mobile for cleaner page layout and performance */
    }

    .chicken-spot {
        display: none !important;
        /* Hide spotlight pads on mobile since chicken doesn't float */
    }

    .about-slogan-container {
        margin-top: 2rem;
        /* Reduce vertical spacing on stacked mobile screens */
    }

    /* Responsive Product Section */
    .product-grid-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .menu-category {
        opacity: 1;
        /* Always visible on mobile for easy vertical reading */
        transform: none;
        margin: 2rem 0;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        /* Stack cards vertically on mobile */
        gap: 1.5rem;
    }

    .product-left-col {
        padding-top: 0;
        padding-bottom: 0;
    }

    .product-right-col {
        display: none;
    }

    .product-bg-assets {
        display: none;
    }

    .lead-text {
        font-size: 1.15rem;
    }

    .main-footer {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-top-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-address {
        flex: none;
        align-items: center;
        text-align: center;
    }

    .footer-address-text {
        max-width: 100%;
    }

    .footer-nav-copyright-container {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-nav-links {
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-asset {
        display: none !important;
    }

    /* Mobile overrides for reviews section */
    .reviews-path-container {
        display: none;
    }

    .reviews-list {
        gap: 4rem;
    }

    .review-row.align-left,
    .review-row.align-right {
        justify-content: center;
    }

    .review-card-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    /* Keep photo at the top for all rows on mobile */
    .review-row.align-left .review-card-wrapper {
        flex-direction: column-reverse;
    }

    .review-bubble::before {
        display: none;
    }

    .review-photo-card {
        transform: none !important;
        width: 150px;
        padding: 8px 8px 15px 8px;
    }

    .polaroid-photo {
        width: 134px;
        height: 134px;
    }

    .polaroid-caption {
        font-size: 1.25rem;
        margin-top: 8px;
    }

    .review-bubble {
        padding: 1.5rem;
        border-radius: 16px;
        width: 100%;
    }

    /* Mobile overrides for FAQ Bento Grid */
    .faq-bento-grid-container {
        margin-top: 0.5rem;
        padding: 0;
    }

    .faq-bento-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem 2rem 1rem;
    }

    .faq-mascot {
        display: none;
        /* Hide mascot on mobile to avoid overlapping */
    }

    .faq-bento-grid .faq-bento-card:nth-child(even) {
        margin-top: 0;
    }

    .faq-bento-card {
        padding: 1.75rem 1.5rem;
    }

    .faq-bento-card:hover {
        transform: translateY(-4px);
    }

    .faq-q-text {
        font-size: 1.15rem;
    }

    .faq-a-text {
        font-size: 0.9rem;
    }

    /* Mobile overrides for Contact Section */
    .contact-grid-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
        padding: 0 1rem;
    }

    .contact-map-card {
        height: 320px;
    }

    .contact-map-card iframe {
        filter: grayscale(0.2) invert(0) contrast(1);
    }

    .contact-info-card {
        padding: 1.75rem 1.5rem;
    }

    .contact-left-col {
        gap: 1rem;
    }

    .contact-challenge-card {
        padding: 1.5rem;
    }

    .challenge-text {
        font-size: 1rem;
    }

    .product-scrolling-mascot {
        display: none !important;
    }

    /* Shift floating cart slightly to the left on mobile */
    .floating-cart {
        right: 45px;
        bottom: 30px;
    }
}

/* PREMIUM CART SYSTEM & WA INTEGRATION STYLES */

/* Cart Button Wrapper on Cards */
.cart-btn-wrapper {
    display: inline-block;
    width: 100%;
    margin-top: auto;
}

/* Base Add To Cart Button */
.btn-add-to-cart {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    background-color: var(--accent);
    color: #ffffff;
    border: 2px solid var(--accent);
    transition: var(--transition-fast);
}

.btn-add-to-cart:hover {
    background-color: var(--bg-primary);
    color: var(--accent);
    border-color: var(--accent);
}

/* Quantity Controller Style (Morphing Button) */
.qty-controller {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 40px;
    border-radius: 20px;
    background-color: #121212;
    border: 2px solid #fdc823;
    overflow: hidden;
    transition: var(--transition-fast);
}

.qty-btn {
    background: none;
    border: none;
    color: #fdc823;
    font-size: 1.2rem;
    font-weight: 700;
    width: 35px;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.qty-btn:hover {
    background-color: #fdc823;
    color: #121212;
}

.qty-btn.btn-minus {
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}

.qty-btn.btn-plus {
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
}

.qty-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: #ffffff;
    user-select: none;
}

/* Menu card hover effect overrides for cart */
.menu-card .cart-btn-wrapper {
    margin-top: 1rem;
}

/* Drinks row specific button alignment */
.drink-row-right .cart-btn-wrapper {
    width: 110px;
}

.drink-row-right .qty-controller {
    height: 34px;
}

.drink-row-right .btn-add-to-cart {
    padding: 0.45rem 1rem;
    font-size: 0.75rem;
}

/* Floating Cart Button */
.floating-cart {
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 999;
    cursor: pointer;
    background: #fdc823;
    border: 3px solid #000000;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(253, 200, 35, 0.5), 5px 5px 0 #000000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.floating-cart:hover {
    transform: scale(1.1) translate(-2px, -2px);
    box-shadow: 0 0 35px rgba(253, 200, 35, 0.8), 7px 7px 0 #000000;
}

.floating-cart.hidden {
    opacity: 0;
    transform: scale(0.5) translateY(100px);
    pointer-events: none;
}

.cart-icon-wrapper {
    position: relative;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-svg {
    width: 28px;
    height: 28px;
}

.cart-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background-color: #000000;
    color: #ff1a1a;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 900;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ff1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Cart Glow pulse effect */
.cart-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: transparent;
    box-shadow: 0 0 15px rgba(253, 200, 35, 0.4);
    pointer-events: none;
    animation: cartPulse 2s infinite;
    z-index: -1;
}

@keyframes cartPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* Cart Drawer Container */
.cart-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.4s ease;
    overflow: hidden;
}

.cart-drawer.open {
    pointer-events: auto;
    visibility: visible;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cart-drawer.open .drawer-overlay {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 480px;
    max-width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-left: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.7);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open .drawer-content {
    transform: translateX(0);
}

/* Drawer Header */
.drawer-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin: 0;
}

.btn-close-drawer {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2.2rem;
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    line-height: 1;
}

.btn-close-drawer:hover {
    color: #ff1a1a;
}

/* Drawer Body */
.drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.drawer-body::-webkit-scrollbar {
    width: 6px;
}

.drawer-body::-webkit-scrollbar-track {
    background: transparent;
}

.drawer-body::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

/* Empty cart state */
.empty-cart-message {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 1rem;
}

/* Cart Items Container */
.cart-items-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cart-item-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.cart-item-img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
}

.cart-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cart-item-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
}

.cart-item-price {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    color: #fdc823;
}

.cart-item-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    border-radius: 15px;
    overflow: hidden;
    height: 28px;
}

.cart-item-qty-btn {
    background: none;
    border: none;
    color: #ffffff;
    width: 25px;
    height: 100%;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background-color 0.2s;
}

.cart-item-qty-btn:hover {
    background-color: var(--border-color);
    color: #ff1a1a;
}

.cart-item-qty-number {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    padding: 0 0.5rem;
    color: #ffffff;
}

.btn-remove-item {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    cursor: pointer;
    transition: color 0.2s;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.5rem;
}

.btn-remove-item:hover {
    color: #ff1a1a;
}

/* Order Form Details inside drawer */
.order-form-container {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    margin-top: 1rem;
}

.form-section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input[type="text"],
.form-group textarea {
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff1a1a;
    box-shadow: 0 0 10px rgba(255, 26, 26, 0.15);
}

.form-group.hidden {
    display: none;
}

/* Radio Button Group styling */
.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-label {
    flex: 1;
    min-width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.2s ease;
    user-select: none;
    text-align: center;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-label:has(input[type="radio"]:checked) {
    border-color: #fdc823;
    background-color: rgba(253, 200, 35, 0.05);
    color: #fdc823;
}

.radio-label:hover {
    border-color: #ff1a1a;
    color: #ffffff;
}

/* Drawer Footer */
.drawer-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    background-color: #050505;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.total-price {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(253, 200, 35, 0.2);
}

.btn-checkout-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: #25d366;
    border: 3px solid #000000;
    border-radius: 30px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    cursor: pointer;
    box-shadow: 4px 4px 0 #000000;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.btn-checkout-wa:hover {
    background-color: #20ba5a;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #000000;
}

.btn-checkout-wa:active {
    transform: translate(0, 0);
    box-shadow: 2px 2px 0 #000000;
}

.wa-icon {
    width: 22px;
    height: 22px;
}

/* Mobile responsive drawer styling overrides */
@media (max-width: 768px) {
    .floating-cart {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .cart-svg {
        width: 24px;
        height: 24px;
    }

    .drawer-content {
        width: 100%;
        height: 85%;
        top: auto;
        bottom: 0;
        border-left: none;
        border-top: 3px solid #fdc823;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        transform: translateY(100%);
    }

    .cart-drawer.open .drawer-content {
        transform: translateY(0);
    }
}

/* ==========================================
   DELIVERY SECTION STYLING (OPTION B)
   ========================================== */
/* ==========================================
   DRINKS SECTION SWAPPED COLORS (DOMINANT YELLOW)
   ========================================== */
#drinks {
    position: relative; /* Set to relative for absolute background assets positioning */
    background-color: #fdc823;
    padding-top: 0.5rem;
    /* Raised even higher to pull title upwards */
    padding-bottom: 2rem;
}

#drinks .section-container {
    position: relative;
    z-index: 2; /* Content stands in front of the z-index 1 background assets */
}

/* Drinks Section Floating Background Assets */
#drinks .drinks-bg-assets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1; /* Behind grid content but on top of yellow background */
}

#drinks .drinks-bg-item {
    position: absolute;
    pointer-events: none;
    opacity: 0.7; /* 70% opacity requested by the user */
    height: auto;
    filter: drop-shadow(6px 8px 0px rgba(0, 0, 0, 0.1)); /* Flat neobrutalist drop shadow */
    transform-origin: center;
    animation: floatDrinks 9s infinite ease-in-out;
}

@keyframes floatDrinks {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(6deg);
    }
}

#drinks .asset-drink-1 {
    top: 10%;
    left: 4%;
    width: 130px;
    transform: rotate(-12deg);
    animation-delay: 0s;
}

#drinks .asset-drink-2 {
    bottom: 8%;
    left: 5%;
    width: 120px;
    transform: rotate(8deg);
    animation-delay: 2s;
    animation-duration: 11s;
}

#drinks .asset-drink-3 {
    top: 8%;
    right: 5%;
    width: 115px;
    transform: rotate(-8deg);
    animation-delay: 4.5s;
    animation-duration: 8s;
}

#drinks .asset-drink-4 {
    bottom: 12%;
    right: 6%;
    width: 110px;
    transform: rotate(12deg);
    animation-delay: 6s;
    animation-duration: 10s;
}

#drinks .asset-drink-6 {
    top: 45%;
    right: 3%;
    width: 115px;
    transform: rotate(15deg);
    animation-delay: 3s;
    animation-duration: 8.5s;
}

#drinks .asset-drink-8 {
    top: 26%;
    right: 22%;
    width: 100px;
    transform: rotate(12deg);
    animation-delay: 5.5s;
    animation-duration: 9s;
}

#drinks .asset-drink-10 {
    bottom: 20%;
    right: 25%;
    width: 95px;
    transform: rotate(18deg);
    animation-delay: 2.8s;
    animation-duration: 8s;
}

@media (max-width: 992px) {
    #drinks .asset-drink-1 { width: 80px; }
    #drinks .asset-drink-3 { width: 75px; }
    #drinks .asset-drink-2 { display: none; } /* Hide lower ones on stacked screens */
    #drinks .asset-drink-4 { display: none; }
    #drinks .asset-drink-6 { display: none; }
    #drinks .asset-drink-8 { display: none; }
    #drinks .asset-drink-10 { display: none; }
}

#drinks .drinks-giant-title {
    font-family: 'Bebas Neue', sans-serif;
    /* "DAFTAR" uses Bebas Neue */
    font-size: clamp(2.5rem, 6.5vw, 6.5rem);
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    color: #121212; /* Solid black color */
    letter-spacing: 0.08em; /* Slightly spread out as requested */
    margin-top: 0;
    margin-bottom: 6rem; /* Increased spacing between title and food list to 6rem */
    text-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2); /* Solid neobrutalist dark flat shadow */
    -webkit-text-stroke: 0px transparent;
}

#drinks .drinks-title-word {
    display: inline-block;
}

#drinks .drinks-title-icon {
    height: 1.15em; /* Scaled to align perfectly with text height */
    width: auto;
    vertical-align: middle;
    margin-left: 0.6rem; /* Margin to space it nicely on the right */
    margin-right: 0;
    margin-top: 0; /* Aligned vertically flat with the text */
    display: inline-block;
    filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.2));
}

/* CSS Transition states for standard scroll reveal */
#drinks .drinks-title-word,
#drinks .drinks-title-icon {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

/* Staggered entry when title contains the .revealed class */
#drinks .drinks-giant-title.revealed .drinks-title-word:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

#drinks .drinks-giant-title.revealed .drinks-title-word:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

#drinks .drinks-giant-title.revealed .drinks-title-icon {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* Category Filters Overrides */
#drinks .filter-btn {
    background-color: #121212;
    border-color: #000000;
    color: rgba(255, 255, 255, 0.7);
}

#drinks .filter-btn:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #000000;
}

#drinks .filter-btn.active {
    background-color: #ffffff;
    color: #121212;
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}



/* Chilled Glow Effect Overrides */
#drinks .chilled-glow-effect {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 65%);
}

/* Bottom Scroll Fade Overlay (Yellow-to-Transparent) */
#drinks .drinks-list-scroll-container::after {
    background: linear-gradient(to top, #fdc823 0%, transparent 100%);
}

/* Scrollbar Customization for Swapped Colors */
#drinks .drinks-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

#drinks .drinks-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #121212;
}

#drinks .drinks-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: #ff2a2a;
}

#delivery {
    background-color: var(--bg-secondary);
    position: relative;
    padding: 2.5rem 0 4rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.delivery-split-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.delivery-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.delivery-desc {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 540px;
}

.delivery-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-top: 4px;
}

.feature-svg-icon {
    width: 28px;
    height: 28px;
    color: #fdc823;
    /* Brand yellow highlight */
}

.feature-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.delivery-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.delivery-btn.btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    align-self: flex-start;
    padding: 1rem 2rem;
    background-color: #25d366;
    border: 3px solid #000000;
    border-radius: 30px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 4px 4px 0 #000000;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.delivery-btn.btn-wa:hover {
    background-color: #20ba5a;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #000000, 0 0 15px rgba(37, 211, 102, 0.4);
}

.delivery-btn.btn-wa:active {
    transform: translate(0, 0);
    box-shadow: 2px 2px 0 #000000;
}

.delivery-btn.btn-wa .wa-icon {
    width: 20px;
    height: 20px;
}

.ojol-platforms {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ojol-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ojol-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ojol-link-img {
    display: inline-block;
    height: 60px;
    width: 60px; /* Even smaller square */
    border: 2.5px solid #000000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 5px 5px 0 #000000;
    transition: transform 0.2s cubic-bezier(0.175,0.885,0.32,1.275),
                box-shadow 0.2s cubic-bezier(0.175,0.885,0.32,1.275);
    background-color: #ffffff;
}

.ojol-link-img:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 #000000;
}

.ojol-link-img:active {
    transform: translate(0, 0);
    box-shadow: 1.5px 1.5px 0 #000000;
}

.ojol-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the button wrapper area cleanly */
    display: block;
    transition: transform 0.3s ease;
}

.ojol-link-img:hover .ojol-img {
    transform: scale(1.06); /* Soft premium zoom on hover */
}

/* Ojek platform icons aligned to right */
.ojol-platforms {
    display: flex;
    justify-content: flex-end; /* push icons to right */
    gap: 12px;
    margin-top: 0.5rem;
    width: 100%;
    align-self: flex-end; /* align container to right within column */
    padding-right: 0.5rem; /* optional right spacing */
}

/* Right Column: Animation Arena + Platforms Container */
.delivery-showcase-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.delivery-showcase {
    position: relative;
    width: 100%;
    height: 400px;
    background: radial-gradient(circle at center, #111111 0%, #050505 100%);
    border: 2px solid #fdc823; /* Yellow border to match branding */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.delivery-scene {
    position: relative;
    width: 100%;
    height: 100%;
}

.scene-skyline {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    height: 120px;
    background-image: linear-gradient(to top, rgba(15, 15, 15, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.4;
    pointer-events: none;
}

.scene-road {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #0f0f12;
    border-top: 4px solid #1a1a24;
    border-bottom: 4px solid #1a1a24;
    display: flex;
    align-items: center;
}

.road-dashed-line {
    width: 100%;
    height: 3px;
    background-image: linear-gradient(to right, #fdc823 60%, transparent 40%);
    background-size: 40px 100%;
    animation: roadMove 0.8s linear infinite;
}

@keyframes roadMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -40px 0;
    }
}

/* Delivery Bike Container & SVGs */
.bike-container {
    position: absolute;
    bottom: 50px;
    left: -130px;
    /* modified dynamically by GSAP */
    width: 130px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transform-origin: bottom center;
}

.delivery-bike-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.6));
    animation: bikeVibrate 0.15s ease-in-out infinite alternate;
}

@keyframes bikeVibrate {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-2px) rotate(1deg);
    }
}

/* Smoke Particles */
.bike-smoke {
    position: absolute;
    left: -15px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
}

.smoke-particle {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 42, 42, 0.4);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    animation: emitSmoke 0.6s infinite ease-out;
}

.smoke-particle.p1 {
    animation-delay: 0s;
}

.smoke-particle.p2 {
    animation-delay: 0.2s;
    background-color: rgba(253, 200, 35, 0.4);
    width: 8px;
    height: 8px;
}

.smoke-particle.p3 {
    animation-delay: 0.4s;
    background-color: rgba(255, 255, 255, 0.2);
    width: 12px;
    height: 12px;
}

@keyframes emitSmoke {
    0% {
        opacity: 0.8;
        transform: translate(0, 0) scale(0.5);
    }

    50% {
        opacity: 0.5;
        background-color: rgba(253, 200, 35, 0.3);
    }

    100% {
        opacity: 0;
        transform: translate(-30px, -15px) scale(1.8);
    }
}

/* Skyline background clouds */
.scene-cloud {
    position: absolute;
    opacity: 0.12;
    pointer-events: none;
    color: #ffffff;
}

.scene-cloud svg {
    width: 50px;
    height: auto;
    display: block;
    fill: currentColor;
}

.scene-cloud.c1 {
    top: 50px;
    left: 20%;
    animation: floatCloud 20s linear infinite;
}

.scene-cloud.c2 {
    top: 90px;
    left: 70%;
    animation: floatCloud 25s linear infinite;
}

.scene-cloud.c2 svg {
    width: 35px;
}

@keyframes floatCloud {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(30px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .delivery-split-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .delivery-split-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .delivery-desc {
        margin: 0 auto;
    }

    .feature-item {
        justify-content: center;
        text-align: left;
        max-width: 450px;
        margin: 0 auto;
    }

    .delivery-btn.btn-wa {
        align-self: center;
    }

    .ojol-buttons {
        justify-content: center;
    }

    /* Make the visual bike animation showcase visible and responsive on mobile */
    .delivery-showcase {
        display: block !important;
        height: 240px;
        margin-top: 1.5rem;
    }

    .scene-road {
        bottom: 25px;
        height: 45px;
    }

    .bike-container {
        width: 90px;
        height: 70px;
        bottom: 32px;
        left: -95px;
    }

    .smoke-particle {
        width: 7px;
        height: 7px;
    }

    .smoke-particle.p2 {
        width: 5px;
        height: 5px;
    }

    .smoke-particle.p3 {
        width: 9px;
        height: 9px;
    }
}