/* ==========================================================================
   DESIGN SYSTEM & CSS VARIABLES
   ========================================================================== */
:root {
    /* Harmonious Coffee Color Palette */
    --color-bg-darkest: #0a0604;
    --color-bg-darker: #120c09;
    --color-bg-dark: #1a110d;
    --color-bg-card: rgba(28, 18, 13, 0.6);
    --color-bg-card-hover: rgba(43, 28, 20, 0.8);
    
    --color-accent: #d4a373;        /* Warm Gold Coffee */
    --color-accent-light: #faedcd;  /* Light Cream */
    --color-accent-dark: #b58253;   /* Espresso Brown */
    
    --color-text-light: #fefae0;    /* Warm Soft White */
    --color-text-muted: #d0c7b7;    /* Cream Muted */
    --color-text-dark: #3d2f24;     /* Deep Wooden Brown */
    
    --color-whatsapp: #25d366;
    --color-whatsapp-hover: #1ebd58;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Glassmorphic Effects */
    --glass-bg: rgba(18, 12, 9, 0.75);
    --glass-border: rgba(212, 163, 115, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    
    /* Layout & Transitions */
    --container-max-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg-darkest);
    color: var(--color-text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Soft noise background simulation */
    background-image: radial-gradient(circle at 50% 50%, #1a110d 0%, #0a0604 100%);
    background-attachment: fixed;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-darkest);
}
::-webkit-scrollbar-thumb {
    background: var(--color-accent-dark);
    border-radius: var(--radius-full);
    border: 2px solid var(--color-bg-darkest);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center-wrapper {
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

/* Section Common Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.section-tag.text-center {
    display: block;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text-light);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-text-light) 30%, var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title.text-center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

.section-subtitle.text-center {
    text-align: center;
}

.section-description {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--color-accent);
    color: var(--color-bg-darkest);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-accent);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3);
    transition: var(--transition-smooth);
    will-change: transform, box-shadow;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.5);
    background-color: var(--color-accent-light);
    border-color: var(--color-accent-light);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: transparent;
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(254, 250, 224, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
    will-change: transform, border;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.btn-underline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent);
    position: relative;
    padding-bottom: 4px;
}

.btn-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.btn-underline:hover {
    color: var(--color-accent-light);
}

.btn-underline:hover::after {
    width: 100%;
    background-color: var(--color-accent-light);
}

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

/* ==========================================================================
   HEADER NAVIGATION (Sticky & Glass)
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    transition: var(--transition-smooth);
    will-change: background, height, box-shadow;
}

.main-header.scrolled {
    height: 70px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.header-container {
    max-width: var(--container-max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-bg-darkest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 15px rgba(212, 163, 115, 0.4);
    transition: var(--transition-smooth);
}

.logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.1);
    background-color: var(--color-accent-light);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--color-text-light);
    line-height: 1.1;
}

.brand-tag {
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Desktop Navigation Link */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px; /* Reduced gap from 32px to 20px for perfect desktop fitting */
    margin: 0 15px; /* Separate nav cleanly from logo and header CTAs */
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
    white-space: nowrap; /* Prevent wrapping onto multiple lines */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-text-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-accent);
}

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

/* Dynamic Open Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-whatsapp);
}

.status-badge.closed {
    background-color: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-whatsapp);
    box-shadow: 0 0 8px var(--color-whatsapp);
    animation: pulse-dot 2s infinite;
}

.status-badge.closed .status-dot {
    background-color: #ef4444;
    box-shadow: 0 0 8px #ef4444;
    animation: none;
}

@keyframes pulse-dot {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-light);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ==========================================================================
   MOBILE DRAWER NAV
   ========================================================================== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: var(--color-bg-darker);
    border-left: 1px solid var(--glass-border);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.mobile-nav-overlay.open .mobile-nav-content {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.mobile-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(254, 250, 224, 0.05);
    border: 1px solid rgba(254, 250, 224, 0.1);
    color: var(--color-text-light);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-close:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-darkest);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-muted);
    padding: 10px 0;
    border-bottom: 1px solid rgba(254, 250, 224, 0.05);
}

.mobile-link:hover {
    color: var(--color-accent);
    padding-left: 8px;
}

.mobile-nav-footer {
    margin-top: auto;
}

.mobile-nav-footer p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.mobile-nav-footer .social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(254, 250, 224, 0.05);
    border: 1px solid rgba(254, 250, 224, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-text-light);
}

.social-btn:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-darkest);
    transform: translateY(-3px);
}

.op-hours {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    padding: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) contrast(1.1);
    transform: scale(1.05);
    animation: pan-image 20s infinite alternate ease-in-out;
}

@keyframes pan-image {
    0% { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.15) translate(-1%, -1%); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(26, 17, 13, 0.45) 0%, rgba(10, 6, 4, 0.95) 85%);
}

.hero-container {
    width: 100%;
    max-width: var(--container-max-width);
    padding: 0 24px;
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.hero-content {
    max-width: 750px;
}

/* Animations for hero items */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(212, 163, 115, 0.15);
    border: 1px solid rgba(212, 163, 115, 0.3);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.badge-icon {
    color: var(--color-accent);
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent-light);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.text-accent {
    color: var(--color-accent);
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

/* 3 Quick visual feature icons in hero */
.hero-features {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(254, 250, 224, 0.1);
    padding-top: 30px;
}

.h-feat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.h-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: rgba(254, 250, 224, 0.03);
    border: 1px solid rgba(254, 250, 224, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-accent);
    transition: var(--transition-fast);
}

.h-feat:hover .h-feat-icon {
    background-color: var(--color-accent);
    color: var(--color-bg-darkest);
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(212, 163, 115, 0.3);
}

.h-feat-text {
    display: flex;
    flex-direction: column;
}

.h-feat-text strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

.h-feat-text span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Scroll indicator animation */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse-wheel {
    display: block;
    width: 28px;
    height: 46px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-text-muted);
    position: relative;
}

.mouse-wheel::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background-color: var(--color-accent);
    border-radius: var(--radius-full);
    animation: scroll-dot 1.5s infinite ease-in-out;
}

@keyframes scroll-dot {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* ==========================================================================
   ABOUT SECTION (Profil Usaha)
   ========================================================================== */
.about-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.img-wrapper {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(254, 250, 224, 0.08);
    transition: var(--transition-smooth);
}

.main-img {
    top: 0;
    left: 0;
    width: 80%;
    height: 85%;
    z-index: 2;
}

.sub-img {
    bottom: 0;
    right: 0;
    width: 50%;
    height: 55%;
    z-index: 3;
    border: 3px solid var(--color-bg-darkest);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.visual-badge {
    position: absolute;
    bottom: 10%;
    left: -5%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--glass-shadow);
    z-index: 4;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.badge-lbl {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.highlight-item {
    display: flex;
    gap: 20px;
}

.hl-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(212, 163, 115, 0.1);
    border: 1px solid rgba(212, 163, 115, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.highlight-item h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 6px;
}

.highlight-item p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.about-cta-box {
    border-top: 1px solid rgba(254, 250, 224, 0.1);
    padding-top: 24px;
}

.cta-box-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

/* ==========================================================================
   MENU SECTION (Produk atau Layanan)
   ========================================================================== */
.menu-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(254, 250, 224, 0.03);
    border: 1px solid rgba(254, 250, 224, 0.08);
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
    will-change: transform, background, color;
}

.filter-tab:hover,
.filter-tab.active {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg-darkest);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.25);
}

.filter-tab:active {
    transform: translateY(0);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    transition: var(--transition-smooth);
}

.menu-card {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(254, 250, 224, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    will-change: transform, border-color, box-shadow;
}

.menu-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 163, 115, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    background-color: var(--color-bg-card-hover);
}

.menu-img-container {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.menu-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .menu-img-container img {
    transform: scale(1.06);
}

/* Badge overlay inside card */
.menu-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.menu-badge.best-seller {
    background-color: var(--color-accent);
    color: var(--color-bg-darkest);
}

.menu-badge.premium-badge {
    background-color: #25d366;
    color: white;
}

.menu-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-light);
    line-height: 1.3;
}

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

.menu-item-desc {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(254, 250, 224, 0.05);
    padding-top: 16px;
    margin-top: auto;
}

.menu-tag {
    font-size: 0.8rem;
    color: var(--color-accent-light);
    opacity: 0.8;
}

.btn-order-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--color-whatsapp);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.btn-order-wa:hover {
    background-color: var(--color-whatsapp-hover);
    transform: translateY(-2px);
}

/* Dynamic filter transitions in JS */
.menu-card.hidden {
    display: none !important;
}

/* ==========================================================================
   GALLERY SECTION (Warkop images grid)
   ========================================================================== */
/* ==========================================================================
   ABSTRACT MASONRY COLLAGE GALLERY SECTION
   ========================================================================== */
.abstract-gallery-wrapper {
    position: relative;
    width: 100%;
}

.abstract-gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 170px;
    gap: 16px;
}

.abstract-gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border: 1px solid rgba(254, 250, 224, 0.06);
    transition: var(--transition-smooth);
    will-change: transform, box-shadow;
}

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

/* Dynamic abstract tilted collage angles */
.abstract-gallery-item.item-1 { grid-column: span 3; grid-row: span 2; transform: rotate(-0.5deg); }
.abstract-gallery-item.item-2 { grid-column: span 3; grid-row: span 1; transform: rotate(0.5deg); }
.abstract-gallery-item.item-3 { grid-column: span 2; grid-row: span 1; transform: rotate(-0.8deg); }
.abstract-gallery-item.item-4 { grid-column: span 2; grid-row: span 2; transform: rotate(0.8deg); }
.abstract-gallery-item.item-5 { grid-column: span 2; grid-row: span 1; transform: rotate(-0.5deg); }
.abstract-gallery-item.item-6 { grid-column: span 4; grid-row: span 1; transform: rotate(0.3deg); }
.abstract-gallery-item.item-7 { grid-column: span 2; grid-row: span 1; transform: rotate(-0.8deg); }

.abstract-gallery-item:hover {
    transform: scale(1.03) rotate(0deg) translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 163, 115, 0.25);
    border-color: rgba(212, 163, 115, 0.3);
    z-index: 5;
}

.abstract-gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 12, 9, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.abstract-gallery-item:hover .gallery-overlay-hover {
    opacity: 1;
}

.gallery-overlay-hover i {
    font-size: 24px;
    color: var(--color-accent);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.abstract-gallery-item:hover .gallery-overlay-hover i {
    transform: scale(1);
}

.gallery-overlay-hover span {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-text-light);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(254, 250, 224, 0.05);
    border-radius: var(--radius-md);
    padding: 36px;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 163, 115, 0.2);
    background-color: var(--color-bg-card-hover);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 36px;
    font-size: 2.5rem;
    color: var(--color-accent);
    opacity: 0.08;
}

.stars {
    display: flex;
    gap: 4px;
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.testi-comment {
    font-size: 0.98rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 28px;
    flex-grow: 1;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(254, 250, 224, 0.05);
    padding-top: 20px;
}

.user-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--color-accent-dark);
    color: var(--color-bg-darkest);
    font-family: var(--font-heading);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-light);
    font-size: 1rem;
}

.user-status {
    font-size: 0.8rem;
    color: var(--color-accent);
}

/* ==========================================================================
   CONTACT, MAPS & WA FORM
   ========================================================================== */
.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

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

.c-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: rgba(254, 250, 224, 0.03);
    border: 1px solid rgba(254, 250, 224, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.c-text h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.c-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Stylized static card for Google Maps integration */
.map-card {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(254, 250, 224, 0.05);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.map-card:hover {
    border-color: rgba(212, 163, 115, 0.3);
    background-color: var(--color-bg-card-hover);
    transform: translateY(-3px);
}

.map-card-bg {
    font-size: 70px;
    color: var(--color-accent);
    opacity: 0.07;
    position: absolute;
    right: -10px;
    bottom: -15px;
    pointer-events: none;
}

.map-card-content h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.map-card-content p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    max-width: 320px;
}

/* WhatsApp Form panel */
.contact-form-panel {
    display: flex;
    justify-content: flex-end;
}

.form-card {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(212, 163, 115, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow);
    padding: 40px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
}

.form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--color-text-light);
}

.form-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-accent-light);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 18px;
    color: var(--color-accent);
    font-size: 16px;
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    background-color: rgba(254, 250, 224, 0.02);
    border: 1px solid rgba(254, 250, 224, 0.1);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 18px 14px 48px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.input-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.input-wrapper select option {
    background-color: #120c09;
    color: #fefae0;
}

/* Custom down arrow for custom select on dark background */
.input-wrapper select::-ms-expand {
    display: none;
}

.input-wrapper:has(select)::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 18px;
    color: var(--color-text-muted);
    pointer-events: none;
}

.input-wrapper textarea {
    resize: none;
    line-height: 1.5;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--color-accent);
    background-color: rgba(212, 163, 115, 0.05);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.15);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: rgba(254, 250, 224, 0.35);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--color-bg-darker);
    border-top: 1px solid rgba(254, 250, 224, 0.05);
    padding: 80px 0 30px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.brand-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 380px;
}

.social-row {
    display: flex;
    gap: 12px;
}

.social-row a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(254, 250, 224, 0.03);
    border: 1px solid rgba(254, 250, 224, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 18px;
    transition: var(--transition-smooth);
}

.social-row a:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-darkest);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contacts h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 6px;
}

.footer-contacts ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contacts li {
    display: flex;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.footer-contacts i {
    color: var(--color-accent);
    font-size: 16px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(254, 250, 224, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-credit {
    color: var(--color-accent);
    font-weight: 600;
}

/* ==========================================================================
   CUSTOM LIGHTBOX VIEWER
   ========================================================================== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 6, 4, 0.95);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-modal.open {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(254, 250, 224, 0.05);
    border: 1px solid rgba(254, 250, 224, 0.1);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-darkest);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 80px;
    background: rgba(254, 250, 224, 0.02);
    border: 1px solid rgba(254, 250, 224, 0.05);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition-fast);
}

.lightbox-arrow:hover {
    background-color: rgba(212, 163, 115, 0.2);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.arrow-left { left: 30px; border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.arrow-right { right: 30px; border-radius: var(--radius-md) 0 0 var(--radius-md); }

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    user-select: none;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 15px 50px rgba(0,0,0,0.8);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.open .lightbox-img {
    transform: scale(1);
}

.lightbox-caption {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-light);
    text-align: center;
    background: rgba(0,0,0,0.6);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(254, 250, 224, 0.08);
}

/* ==========================================================================
   FLOATING PULSATING WHATSAPP WIDGET
   ========================================================================== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-smooth);
    will-change: transform;
}

.floating-wa::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-whatsapp);
    border-radius: 50%;
    z-index: -1;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

.floating-wa:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: var(--color-whatsapp-hover);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.floating-wa-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-light);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    box-shadow: var(--glass-shadow);
}

.floating-wa:hover .floating-wa-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   SCROLL REVEAL UTILITY (Premium micro-interaction)
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE MEDIA BREAKPOINTS
   ========================================================================== */

/* Laptop & Large Desktop */
@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
    
    /* Optimize header layout to prevent messy wrapping */
    .brand-tag {
        display: none !important; /* Hide tag for extra horizontal space */
    }
    
    .desktop-nav {
        gap: 12px;
        margin: 0 10px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .header-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .status-badge {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

/* Tablet Layout (Landscape & Portrait) */
@media (max-width: 991px) {
    section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    /* Hero adjust */
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    /* About stacks */
    .about-visual {
        height: 450px;
    }
    
    .main-img {
        width: 75%;
        height: 85%;
    }
    
    .sub-img {
        width: 45%;
        height: 55%;
    }
    
    /* Abstract Collage Responsive Layout */
    .abstract-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 140px;
        gap: 15px;
    }
    
    .abstract-gallery-item.item-1 { grid-column: span 2; grid-row: span 2; }
    .abstract-gallery-item.item-2 { grid-column: span 2; grid-row: span 1; }
    .abstract-gallery-item.item-3 { grid-column: span 2; grid-row: span 1; }
    .abstract-gallery-item.item-4 { grid-column: span 2; grid-row: span 2; }
    .abstract-gallery-item.item-5 { grid-column: span 2; grid-row: span 1; }
    .abstract-gallery-item.item-6 { grid-column: span 2; grid-row: span 1; }
    .abstract-gallery-item.item-7 { grid-column: span 2; grid-row: span 1; }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Contact */
    .contact-form-panel {
        justify-content: center;
    }
    
    .form-card {
        max-width: 100%;
    }
    
    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile Devices (Portrait) */
@media (max-width: 576px) {
    .brand-tag {
        display: none !important;
    }
    
    html {
        font-size: 14px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 1.95rem;
    }
    
    /* Status Dot header */
    .status-badge {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
    
    /* Hero Adjustments */
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px 0;
    }
    
    .hero-title {
        font-size: 2.85rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-ctas .btn-large {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .h-feat {
        gap: 12px;
    }
    
    /* About */
    .about-visual {
        height: 320px;
    }
    
    .visual-badge {
        padding: 12px 16px;
        left: 0;
        bottom: 5%;
    }
    
    .badge-num {
        font-size: 1.75rem;
    }
    
    /* Menu Filters scroll on small screen */
    .menu-filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 12px;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-tab {
        flex-shrink: 0;
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery abstract completely mobile responsive */
    .abstract-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 130px;
        gap: 10px;
    }
    
    .abstract-gallery-item {
        transform: none !important; /* Reset abstract tilted layout on mobile */
    }
    
    .abstract-gallery-item.item-1 { grid-column: span 2; grid-row: span 2; }
    .abstract-gallery-item.item-2 { grid-column: span 2; grid-row: span 1; }
    .abstract-gallery-item.item-3 { grid-column: span 1; grid-row: span 1; }
    .abstract-gallery-item.item-4 { grid-column: span 1; grid-row: span 2; }
    .abstract-gallery-item.item-5 { grid-column: span 1; grid-row: span 1; }
    .abstract-gallery-item.item-6 { grid-column: span 2; grid-row: span 1; }
    .abstract-gallery-item.item-7 { grid-column: span 1; grid-row: span 1; }
    
    /* Map & WA forms */
    .map-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .form-card {
        padding: 24px;
    }
    
    /* Lightbox modal zoom handles for smaller screen sizes */
    .lightbox-content {
        max-width: 90%;
    }
    
    .lightbox-arrow {
        width: 40px;
        height: 60px;
    }
    
    .arrow-left { left: 5px; }
    .arrow-right { right: 5px; }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    /* Floating WA Button */
    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    
    .floating-wa-tooltip {
        display: none !important; /* Hide tooltip on small mobile screens */
    }
}

/* ==========================================================================
   SHOPPING CART SYSTEM STYLES (PREMIUM DRAWER & FLOATING CART)
   ========================================================================== */

/* Cart Header Toggler Button */
.cart-toggle-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(254, 250, 224, 0.03);
    border: 1px solid rgba(254, 250, 224, 0.1);
    color: var(--color-text-light);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cart-toggle-btn:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-darkest);
    border-color: var(--color-accent);
    transform: scale(1.05);
}

/* Badge count inside header toggler */
.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-bg-darkest);
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-toggle-btn:hover .cart-count-badge {
    border-color: var(--color-accent);
}

/* Floating Cart Toggler Button */
.floating-cart {
    position: fixed;
    bottom: 105px; /* Sits beautifully above floating WA button which is at bottom: 30px */
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-accent);
    color: var(--color-bg-darkest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border: none;
    box-shadow: 0 8px 30px rgba(212, 163, 115, 0.4);
    z-index: 998;
    cursor: pointer;
    transition: var(--transition-smooth);
    will-change: transform;
}

.floating-cart:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: var(--color-accent-light);
    box-shadow: 0 12px 35px rgba(212, 163, 115, 0.6);
}

.floating-cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-accent);
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.floating-cart:hover .floating-cart-count {
    border-color: var(--color-accent-light);
}

/* Cart Slide-out Drawer Overlay */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

/* Cart Drawer Panel */
.cart-drawer {
    position: absolute;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100%;
    background-color: var(--color-bg-darker);
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100001;
}

.cart-drawer-overlay.open .cart-drawer {
    right: 0;
}

/* Cart Header */
.cart-header {
    padding: 24px;
    border-bottom: 1px solid rgba(254, 250, 224, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-header h3 i {
    color: var(--color-accent);
}

.cart-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(254, 250, 224, 0.03);
    border: 1px solid rgba(254, 250, 224, 0.08);
    color: var(--color-text-light);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cart-close-btn:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-darkest);
    border-color: var(--color-accent);
}

/* Cart Content Area scrollable */
.cart-items-wrapper {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Empty Cart State */
.empty-cart-message {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    color: var(--color-text-muted);
}

.empty-cart-message i {
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.2;
    animation: float-cart 3s infinite ease-in-out alternate;
}

@keyframes float-cart {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.empty-cart-message p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Cart Item Card list */
.cart-item-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(254, 250, 224, 0.02);
    border: 1px solid rgba(254, 250, 224, 0.04);
    padding: 14px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.cart-item-card:hover {
    background-color: rgba(254, 250, 224, 0.04);
    border-color: rgba(212, 163, 115, 0.15);
}

.cart-item-img {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid rgba(254, 250, 224, 0.08);
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-light);
    line-height: 1.2;
}

.cart-item-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* Quantity Adjusters inside Item card */
.cart-qty-adjuster {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(254, 250, 224, 0.15);
    background-color: transparent;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.qty-num {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-text-light);
    min-width: 14px;
    text-align: center;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: #ef4444;
    font-size: 16px;
    cursor: pointer;
    padding: 6px;
    transition: var(--transition-fast);
    opacity: 0.6;
}

.cart-item-remove:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Cart Footer Panel */
.cart-footer {
    padding: 24px;
    border-top: 1px solid rgba(254, 250, 224, 0.05);
    background-color: rgba(10, 6, 4, 0.3);
}

.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

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

.summary-row.grand-total {
    border-top: 1px solid rgba(254, 250, 224, 0.08);
    padding-top: 12px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-accent-light);
}

.summary-row.grand-total span:last-child {
    color: var(--color-accent);
}

/* Customer details form inside drawer */
.cart-customer-form {
    border-top: 1px solid rgba(254, 250, 224, 0.08);
    padding-top: 16px;
    margin-bottom: 24px;
}

.cart-customer-form h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-accent);
}

.cart-customer-form .form-group {
    margin-bottom: 14px;
}

.cart-customer-form .form-group label {
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.cart-customer-form .input-wrapper input,
.cart-customer-form .input-wrapper select {
    padding: 10px 14px 10px 38px;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
}

.cart-customer-form .input-wrapper i {
    left: 14px;
    font-size: 14px;
}

.cart-customer-form .input-wrapper:has(select)::after {
    right: 14px;
}

.checkout-btn {
    background-color: var(--color-whatsapp);
    border-color: var(--color-whatsapp);
    color: white;
}

.checkout-btn:hover {
    background-color: var(--color-whatsapp-hover);
    border-color: var(--color-whatsapp-hover);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Hide table number if delivery or takeaway chosen in select */
#group-table-num.hidden {
    display: none !important;
}

/* Mobile responsive drawer adjustments */
@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
    
    .floating-cart {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .floating-cart-count {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
}

