/* ============================================
   CSS Variables & Root Styles
   ============================================ */
:root {
    /* Color Palette - Based on Logo */
    --logo-dark-blue: #1a237e;
    --logo-green: #4caf50;
    --logo-golden: #FFD700;
    --primary-red: #d32f2f;
    --primary-orange: #ff6b35;
    --accent-red: #c62828;
    --accent-orange: #ff8c42;
    --cream-bg: #faf8f3;
    --beige-bg: #f5f1e8;
    --warm-white: #fffef9;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(26, 35, 126, 0.3);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--cream-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 243, 0.98);
    box-shadow: 0 2px 20px var(--shadow);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.logo-name {
    font-family: 'Dancing Script', 'Playfair Display', cursive;
    font-size: 1.8rem;
    color: var(--logo-golden);
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

.logo-cafe {
    font-family: var(--font-body);
    color: var(--logo-dark-blue);
    font-weight: 600;
    font-style: normal;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--logo-green);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cart {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--logo-green);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 1.5rem;
}

.nav-cart.hidden {
    display: none;
}

.nav-cart:hover {
    background: #45a049;
    transform: scale(1.1);
}

.nav-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--logo-dark-blue);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    border: 2px solid var(--warm-white);
    min-width: 22px;
}

.nav-cart.hidden {
    display: none !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

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

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

.nav-link:hover {
    color: var(--logo-dark-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

/* ============================================
   Hero Section - World Class Design
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem 0;
    animation: none;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    contain: layout style paint;
}

.video-background video,
.video-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: none;
}

@keyframes videoZoom {
    0%, 100% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* Mobile video optimizations */
@media (max-width: 768px) {
    .video-background video,
    .video-background img {
        transform: scale(1);
        /* Reduce video quality on mobile for better performance */
    }
    
    /* Pause video by default on mobile to save bandwidth */
    @media (prefers-reduced-motion: reduce) {
        .video-background video {
            display: none;
        }
        
        .video-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(211, 47, 47, 0.75) 0%, rgba(255, 107, 53, 0.65) 50%, rgba(26, 35, 126, 0.7) 100%);
            z-index: 2;
        }
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 12, 20, 0.72) 0%, rgba(26, 35, 126, 0.55) 55%, rgba(10, 12, 20, 0.72) 100%);
    z-index: 1;
    animation: none;
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.95;
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 40%, rgba(76, 175, 80, 0.16) 0%, transparent 55%),
                radial-gradient(circle at 80% 60%, rgba(255, 215, 0, 0.12) 0%, transparent 55%);
    z-index: 1;
    animation: none;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}


/* Hero Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    display: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 80%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 50%;
    top: 80%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(4) {
    left: 20%;
    top: 40%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    left: 90%;
    top: 30%;
    animation-delay: 3s;
    animation-duration: 14s;
}


.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 3rem 2rem;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    animation: none;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
    animation: none;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    60% {
        transform: scale(1.05) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


.hero-logo-icon {
    width: 450px;
    height: 450px;
    max-width: 95%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    animation: none;
}

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

.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, rgba(76, 175, 80, 0.3) 40%, transparent 70%);
    z-index: -1;
    animation: none;
    filter: blur(18px);
    opacity: 0.9;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hero-logo-icon::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.18) 0%, transparent 70%);
    z-index: -2;
    animation: none;
}

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


.hero-logo-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.35));
    transition: transform 0.3s ease;
}

.hero-logo-icon:hover .hero-logo-img {
    transform: scale(1.04);
}


.hero-title {
    font-family: 'Dancing Script', 'Playfair Display', cursive;
    font-size: 4.4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    animation: none;
}

@keyframes titleEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.title-line {
    color: var(--logo-golden);
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.40);
    display: inline-block;
    animation: none;
    transition: transform 0.3s ease;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 40px rgba(255, 215, 0, 0.7),
                     0 0 60px rgba(255, 215, 0, 0.4),
                     0 4px 20px rgba(0, 0, 0, 0.5),
                     2px 2px 10px rgba(0, 0, 0, 0.4);
    }
    50% {
        text-shadow: 0 0 50px rgba(255, 215, 0, 0.9),
                     0 0 80px rgba(255, 215, 0, 0.6),
                     0 4px 20px rgba(0, 0, 0, 0.5),
                     2px 2px 10px rgba(0, 0, 0, 0.4);
    }
}

.title-line:hover {
    transform: scale(1.05);
}


.hero-cafe {
    font-family: var(--font-body);
    color: white;
    font-weight: 700;
    font-size: 4rem;
    font-style: normal;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.40);
    letter-spacing: 1px;
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: none;
    transition: transform 0.3s ease;
}

@keyframes textGradientShift {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.1);
    }
}

.hero-cafe:hover {
    transform: scale(1.05);
}

.hero-cafe::after {
    content: none;
}

@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.8;
        box-shadow: 0 0 10px rgba(76, 175, 80, 0.6);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.9), 0 0 30px rgba(76, 175, 80, 0.5);
    }
}


.hero-tagline-wrapper {
    margin: 1rem 0;
    animation: none;
}

@keyframes taglineEntrance {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-transform: uppercase;
}

.tagline-word {
    color: var(--logo-green);
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    display: inline-block;
    position: relative;
    animation: none;
    transition: transform 0.3s ease;
}

.tagline-word:hover {
    transform: translateY(-1px);
}

.tagline-word:nth-child(1) {
    animation-delay: 0s;
}

.tagline-word:nth-child(3) {
    animation-delay: 0.4s;
}

.tagline-word:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes wordFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}


.tagline-dot {
    color: var(--logo-golden);
    font-size: 1.5rem;
    animation: none;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}


.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0;
    font-style: normal;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.40);
    animation: none;
}

@keyframes subtitleFade {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    animation: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-description:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

@keyframes descriptionFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 0;
    flex-wrap: wrap;
}


.badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 1.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2),
                0 0 30px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: none;
}

@keyframes badgeEntrance {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.badge-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.badge-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.badge::before {
    content: none;
}

.badge:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(255, 255, 255, 0.32);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.55);
}

.badge-icon {
    font-size: 2rem;
    line-height: 1;
}


.badge-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.badge-label {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-value {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}


.btn {
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--logo-green) 0%, #45a049 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.6),
                0 0 40px rgba(76, 175, 80, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    animation: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes buttonEntrance {
    0% {
        opacity: 0;
        transform: translateY(25px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.btn-primary:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 15px 45px rgba(76, 175, 80, 0.7),
                0 0 60px rgba(76, 175, 80, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #45a049 0%, var(--logo-green) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--logo-dark-blue);
    border-color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.3);
}

.btn-icon {
    font-size: 1.4rem;
    line-height: 1;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn:hover .btn-icon {
    transform: scale(1.2) rotate(10deg);
}

.btn-text {
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.btn-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
    display: block;
}

.food-icon {
    position: absolute;
    font-size: 3.5rem;
    opacity: 0.3;
    transition: all 0.4s ease;
    animation: iconFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.food-icon:hover {
    opacity: 0.7;
    transform: scale(1.2) rotate(15deg);
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-25px) rotate(3deg);
    }
}

.food-icon:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.food-icon:nth-child(2) {
    top: 65%;
    right: 12%;
    animation-delay: 2s;
}

.food-icon:nth-child(3) {
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
}

.food-icon:nth-child(4) {
    top: 35%;
    right: 8%;
    animation-delay: 1s;
}

.food-icon:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 3s;
}

.food-icon:nth-child(6) {
    bottom: 30%;
    right: 20%;
    animation-delay: 5s;
}

.food-icon:nth-child(7) {
    top: 80%;
    left: 50%;
    animation-delay: 2.5s;
}

.food-icon:nth-child(8) {
    top: 25%;
    right: 30%;
    animation-delay: 3.5s;
}


.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}


.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-mouse:hover {
    border-color: white;
    transform: scale(1.1);
}

.scroll-wheel {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: white;
    border-radius: 3px;
    opacity: 0.7;
}


.scroll-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.85;
}

/* ============================================
   About / Highlights
   ============================================ */
.section-title.section-title-left,
.section-subtitle.section-subtitle-left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.about-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, rgba(250, 248, 243, 0.65) 0%, var(--warm-white) 100%);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-media img {
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.about-media-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 14px;
}

.about-media-strip img {
    border-radius: 14px;
    height: 120px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.about-text {
    color: var(--text-light);
    line-height: 1.9;
    margin: 0.75rem 0 1.5rem;
    font-size: 1.05rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.25rem 0 1.75rem;
}

.highlight-card {
    background: white;
    border: 1px solid rgba(26, 35, 126, 0.08);
    border-radius: 16px;
    padding: 1.1rem 1.1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.highlight-card h3 {
    color: var(--logo-dark-blue);
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.highlight-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.09);
}

.about-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    .about-media-strip img {
        height: 110px;
    }
}


/* ============================================
   Menu Section
   ============================================ */
.menu-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--warm-white) 0%, rgba(250, 248, 243, 0.5) 100%);
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.2), transparent);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    text-align: center;
    color: var(--logo-dark-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Menu Search Box */
.menu-search-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
}

.menu-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.menu-search-wrapper:focus-within {
    border-color: var(--logo-green);
    box-shadow: 0 6px 30px rgba(76, 175, 80, 0.2);
    transform: translateY(-2px);
}

.search-icon {
    width: 20px;
    height: 20px;
    color: var(--text-light);
    margin-right: 1rem;
    flex-shrink: 0;
}

.menu-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: transparent;
    padding: 0.5rem 0;
}

.menu-search-input:focus {
    outline: none;
    box-shadow: none;
}

.menu-search-input:focus-visible {
    outline: none;
    box-shadow: none;
}

.menu-search-input::placeholder {
    color: var(--text-light);
}

.search-clear-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.2s ease;
    border-radius: 50%;
    margin-left: 0.5rem;
}

.search-clear-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

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

.search-results-info {
    margin-top: 1rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 0.75rem;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.search-results-info strong {
    color: var(--logo-dark-blue);
    font-weight: 600;
}

/* Category Tabs - New Modern Card Style */
.category-tabs-container {
    position: sticky;
    top: 80px;
    z-index: 100;
    background: linear-gradient(180deg, rgba(250, 248, 243, 0.98) 0%, rgba(250, 248, 243, 0.98) 100%);
    padding: 2rem 0;
    margin: -2rem -2rem 2rem -2rem;
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.category-tabs-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
}

.category-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    width: 100%;
    padding: 0.5rem 0;
}

.category-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background: white;
    border: 2px solid rgba(76, 175, 50, 0.15);
    border-radius: 16px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    min-height: 100px;
}

.category-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(26, 35, 126, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-icon {
    font-size: 2rem;
    line-height: 1;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.category-text {
    position: relative;
    z-index: 1;
    text-align: center;
    line-height: 1.2;
}

.category-tab:hover:not(.active) {
    border-color: var(--logo-green);
    color: var(--logo-green);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
    transform: translateY(-4px);
}

.category-tab:hover:not(.active)::before {
    opacity: 1;
}

.category-tab:hover:not(.active) .category-icon {
    transform: scale(1.15) rotate(5deg);
}

.category-tab.active {
    background: linear-gradient(135deg, var(--logo-green) 0%, #45a049 100%);
    color: white;
    border-color: var(--logo-green);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.35);
    transform: translateY(-4px);
}

.category-tab.active::before {
    opacity: 0;
}

.category-tab.active .category-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.category-tab.active .category-text {
    font-weight: 700;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.category-scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.3s ease;
    border: 2px solid rgba(76, 175, 80, 0.2);
    color: var(--logo-green);
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    pointer-events: none;
}

.category-scroll-indicator.left {
    left: 0;
}

.category-scroll-indicator.right {
    right: 0;
}

.category-scroll-indicator.visible {
    opacity: 1;
    pointer-events: all;
}

.category-scroll-indicator:hover {
    background: var(--logo-green);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.category-scroll-indicator:active {
    transform: translateY(-50%) scale(0.95);
}

/* Menu Items */
.menu-items-container {
    position: relative;
    min-height: 500px;
}

.menu-category-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-top: 2rem;
}

.menu-category-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--logo-dark-blue);
    margin: 0;
}

.menu-category-count {
    font-size: 0.9rem;
    color: var(--text-light);
}

.menu-category {
    display: none;
    animation: none;
}

.menu-category.active {
    display: block;
}

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

.menu-item {
    animation: none;
}

.menu-item:nth-child(1) { animation-delay: 0.05s; }
.menu-item:nth-child(2) { animation-delay: 0.1s; }
.menu-item:nth-child(3) { animation-delay: 0.15s; }
.menu-item:nth-child(4) { animation-delay: 0.2s; }
.menu-item:nth-child(5) { animation-delay: 0.25s; }
.menu-item:nth-child(6) { animation-delay: 0.3s; }
.menu-item:nth-child(n+7) { animation-delay: 0.35s; }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 0.5rem 0;
}

.menu-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.menu-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--logo-green), var(--logo-dark-blue));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 50px rgba(76, 175, 80, 0.25);
}

.menu-item:hover::after {
    opacity: 1;
}

.menu-item-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--beige-bg) 0%, #e8e3d8 100%);
}

.menu-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(26, 35, 126, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.menu-item:hover .menu-item-image::before {
    opacity: 1;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.15) rotate(2deg);
}

.menu-item-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.menu-item-content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, var(--logo-dark-blue) 0%, var(--logo-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-item-content .price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--logo-dark-blue) 0%, var(--logo-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.menu-item-content .price small {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    display: inline-block;
    margin-left: 0.25rem;
    -webkit-text-fill-color: var(--text-light);
}

.menu-item-content .addons {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Size Selector */
.size-selector {
    margin-bottom: 1rem;
}

.size-selector label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.size-select {
    width: 100%;
    padding: 0.6rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--bg-light);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-select:focus {
    outline: none;
    border-color: var(--logo-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

/* Addon Selector */
.addon-selector {
    margin-bottom: 0.5rem;
}

.addons-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    display: block;
}

.addon-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.addon-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.addon-option input[type="checkbox"] {
    margin-right: 0.5rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--logo-green);
    flex-shrink: 0;
}

.addon-option span {
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 0.5rem 0.9rem;
    border: 2px solid rgba(76, 175, 80, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(76, 175, 80, 0.03);
    font-weight: 500;
}

.addon-option:hover span {
    border-color: var(--logo-green);
    background: rgba(76, 175, 80, 0.08);
    transform: translateY(-1px);
}

.addon-option input[type="checkbox"]:checked + span {
    background: linear-gradient(135deg, var(--logo-green) 0%, #45a049 100%);
    color: white;
    border-color: var(--logo-green);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.order-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--logo-green) 0%, #45a049 100%);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.order-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, var(--logo-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.order-btn:hover::before {
    left: 100%;
}

.order-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

/* Size Selection Modal */
.size-selection-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
    padding: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.size-modal-content {
    background: var(--warm-white);
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    margin: auto;
    position: relative;
}

.size-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.size-modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.size-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
}

.size-modal-close:hover {
    color: var(--logo-dark-blue);
}

.size-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.size-option-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--logo-green);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.size-option-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

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

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

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    padding: var(--spacing-xl) 0;
    background: var(--beige-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease;
}

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

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 2001;
    transition: transform var(--transition-fast);
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    color: white;
    font-size: 1.5rem;
    font-family: var(--font-display);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1517487881594-2787fef5ebf7?w=1920') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    min-height: 300px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px var(--shadow);
}

.stars {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--logo-dark-blue);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--beige-bg);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active,
.dot:hover {
    background: var(--logo-green);
    transform: scale(1.3);
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--beige-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--logo-dark-blue);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--logo-dark-blue);
    margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
    color: var(--text-dark);
    line-height: 1.8;
    display: block;
}

.contact-details a:hover {
    color: var(--primary-red);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-call {
    background: var(--logo-dark-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.btn-call:hover {
    background: #283593;
    transform: translateY(-3px);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    height: 400px;
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-display);
    margin-bottom: 1rem;
    color: var(--logo-golden);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--logo-golden);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Cart System
   ============================================ */
.cart-float {
    position: fixed;
    bottom: 9rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--logo-green);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(76, 175, 0, 0.4);
    z-index: 998;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.cart-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(76, 175, 80, 0.6);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--logo-dark-blue);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.cart-notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: var(--logo-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    opacity: 0;
    transform: translateX(400px);
    transition: all var(--transition-normal);
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh; /* Dynamic viewport height for mobile */
    max-height: 100vh;
    max-height: 100dvh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0;
}

.cart-modal.active {
    display: flex;
}

.cart-modal-content {
    background: var(--warm-white);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    max-height: 80dvh; /* Dynamic viewport height */
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin: auto;
    position: relative;
    overflow: hidden;
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--beige-bg);
}

.cart-modal-header h2 {
    font-family: var(--font-display);
    color: var(--logo-dark-blue);
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.cart-close:hover {
    background: var(--beige-bg);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    max-height: 400px;
    -webkit-overflow-scrolling: touch;
    min-height: 0; /* Allows flex item to shrink */
}

.cart-empty {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
    gap: 1rem;
    flex-wrap: wrap;
}

.cart-item-info {
    flex: 1;
    min-width: 0; /* Allows text to wrap */
}

.cart-item-info h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    word-wrap: break-word;
    line-height: 1.4;
}

.cart-item-price {
    margin: 0;
    color: var(--logo-dark-blue);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.qty-btn {
    width: 30px;
    height: 30px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background: var(--logo-green);
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    touch-action: manipulation;
}

.qty-btn:hover {
    background: #45a049;
    transform: scale(1.1);
}

.qty-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.remove-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
    touch-action: manipulation;
    border-radius: 50%;
}

.remove-btn:hover {
    transform: scale(1.2);
}

.cart-footer {
    padding: 1.5rem;
    padding-bottom: 2.5rem;
    border-top: 2px solid var(--beige-bg);
    flex-shrink: 0;
    background: var(--warm-white);
    margin-top: auto;
}

.cart-total {
    font-size: 1.5rem;
    color: var(--logo-dark-blue);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    min-height: 52px;
    background: var(--logo-green);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    touch-action: manipulation;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-checkout:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

/* Checkout Modal */
.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2001;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 2rem 0;
    animation: fadeIn 0.3s ease;
}

.checkout-modal.active {
    display: flex;
}

.checkout-modal-content {
    background: var(--warm-white);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow: hidden;
}

.checkout-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--beige-bg);
    flex-shrink: 0;
}

.checkout-modal-header h2 {
    font-family: var(--font-display);
    color: var(--logo-dark-blue);
    margin: 0;
}

.checkout-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.checkout-close:hover {
    background: var(--beige-bg);
    transform: rotate(90deg);
}

.checkout-form {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--beige-bg);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input:focus {
    outline: none;
    border-color: var(--logo-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.location-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.location-input-group input {
    flex: 1;
}

.btn-location {
    padding: 0.8rem 1rem;
    background: var(--logo-dark-blue);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-normal);
}

.btn-location:hover {
    background: #283593;
    transform: translateY(-2px);
}

.btn-location:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.location-map {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    margin-top: 1rem;
    border: 2px solid var(--beige-bg);
    position: relative;
    z-index: 1;
}

/* Leaflet map container styling */
/* (Leaflet removed) */

.order-summary {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    max-height: 200px;
    overflow-y: auto;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--beige-bg);
}

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

.total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--logo-dark-blue);
    text-align: center;
    padding: 1rem;
    background: var(--beige-bg);
    border-radius: 10px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    flex-shrink: 0;
}

.form-actions .btn {
    flex: 1;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}



/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        min-height: 100vh;
        padding: 1.5rem 0;
    }
    
    .hero-logo-icon {
        width: 350px;
        height: 350px;
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-cafe {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
        letter-spacing: 4px;
        gap: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .badge {
        padding: 0.9rem 1.5rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .food-icon {
        font-size: 2.5rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 1rem;
    }
    
    /* Navigation improvements */
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--warm-white);
        flex-direction: column;
        padding: 2rem 1.5rem;
        transition: left var(--transition-normal);
        box-shadow: 2px 0 20px var(--shadow);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .nav-actions {
        gap: 0.75rem;
    }
    
    .nav-cart {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-cart-count {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
    
    .hamburger {
        display: flex;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    
    .hamburger span {
        width: 28px;
        height: 3px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .logo {
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .logo-name {
        font-size: 1.4rem;
    }
    
    .logo .tagline {
        font-size: 0.65rem;
    }
    
    /* Hero section mobile optimizations */
    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile */
        height: auto;
        padding: 80px 0 2rem;
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    }
    
    .hero-content {
        padding: 2rem 1rem;
        max-width: 100%;
        gap: 1.25rem;
    }
    
    .hero-logo-icon {
        width: 280px;
        height: 280px;
        max-width: 85%;
    }
    
    .hero-title {
        font-size: 3rem;
        gap: 0.2rem;
        line-height: 1.1;
    }
    
    .hero-cafe {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        letter-spacing: 3px;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tagline-dot {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin: 0;
        padding: 0 0.5rem;
    }
    
    .hero-badges {
        gap: 1rem;
        margin: 0;
        width: 100%;
        flex-direction: column;
        padding: 0 0.5rem;
    }
    
    .badge {
        padding: 1rem 1.2rem;
        gap: 0.8rem;
        width: 100%;
        max-width: 100%;
        min-width: auto;
        min-height: 60px;
    }
    
    .badge-icon {
        font-size: 1.5rem;
    }
    
    .badge-label {
        font-size: 0.75rem;
    }
    
    .badge-value {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        gap: 1rem;
        flex-direction: column;
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 100%;
        padding: 1.1rem 2rem;
        font-size: 1rem;
        justify-content: center;
        min-height: 50px;
    }
    
    .food-icon {
        font-size: 2rem;
        opacity: 0.2;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
    }
    
    .scroll-mouse {
        width: 25px;
        height: 40px;
    }
    
    .scroll-text {
        font-size: 0.65rem;
    }
    
    /* Section titles */
    .section-title {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    /* Category tabs mobile improvements - Horizontal Scrollable Design */
    .category-tabs-container {
        top: 60px;
        padding: 0.75rem 0;
        margin: -1.5rem -1rem 1.5rem -1rem;
        position: sticky;
        z-index: 100;
        background: rgba(250, 248, 243, 0.98);
        backdrop-filter: blur(10px);
    }
    
    .category-tabs-wrapper {
        padding: 0;
        position: relative;
    }
    
    .category-tabs {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 0.75rem;
        padding: 0.5rem 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-padding: 0 1rem;
    }
    
    .category-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .category-tab {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
        padding: 0.85rem 1.25rem;
        font-size: 0.85rem;
        min-height: 48px;
        min-width: auto;
        flex-shrink: 0;
        touch-action: manipulation;
        scroll-snap-align: start;
        border-radius: 25px;
        white-space: nowrap;
        width: auto;
    }
    
    .category-icon {
        font-size: 1.4rem;
        flex-shrink: 0;
    }
    
    .category-text {
        white-space: nowrap;
    }
    
    .category-tab.active {
        transform: none;
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    }
    
    .category-tab:hover:not(.active) {
        transform: none;
    }
    
    .category-scroll-indicator {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
        min-width: 44px;
        min-height: 44px;
        display: flex;
    }
    
    .category-scroll-indicator.visible {
        opacity: 1;
    }
    
    /* Menu Search Mobile */
    .menu-search-container {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .menu-search-wrapper {
        padding: 0.75rem 1rem;
        border-radius: 30px;
    }
    
    .menu-search-input {
        font-size: 1rem;
        padding: 0.25rem 0;
    }
    
    .menu-search-input:focus,
    .menu-search-input:focus-visible {
        outline: none;
        box-shadow: none;
    }
    
    .search-icon {
        width: 20px;
        height: 20px;
        margin-right: 0.75rem;
    }
    
    .search-results-info {
        font-size: 0.9rem;
        padding: 0.65rem;
        margin-top: 0.75rem;
    }
    
    /* Menu grid mobile - Optimized for touch */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0.5rem 1rem;
    }
    
    .menu-item {
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    
    .menu-item:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    }
    
    .menu-item-image {
        height: 180px;
    }
    
    .menu-item-content {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .menu-item-content h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .menu-item-content .price {
        font-size: 1.3rem;
    }
    
    .menu-item-content .price small {
        font-size: 0.85rem;
    }
    
    .addon-selector {
        margin-bottom: 0.75rem;
    }
    
    .addons-label {
        font-size: 0.9rem;
        margin-bottom: 0.65rem;
    }
    
    .addon-options {
        gap: 0.5rem;
    }
    
    .addon-option span {
        font-size: 0.85rem;
        padding: 0.45rem 0.8rem;
    }
    
    .order-btn {
        min-height: 50px;
        font-size: 1rem;
        padding: 0.95rem 1.5rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(76, 175, 80, 0.2);
        border-radius: 12px;
    }
    
    .order-btn:active {
        transform: scale(0.98);
        box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
    }
    
    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .gallery-item {
        border-radius: 12px;
        aspect-ratio: 1;
    }
    
    /* Testimonials mobile */
    .testimonials-carousel {
        padding: 0 0.5rem;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .testimonial-author {
        font-size: 1.1rem;
    }
    
    .stars {
        font-size: 1.5rem;
    }
    
    /* Contact section mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        margin: 0 auto;
    }
    
    .contact-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .btn-whatsapp,
    .btn-call {
        width: 100%;
        padding: 1rem;
        min-height: 48px;
        font-size: 1rem;
    }
    
    .map-container {
        height: 300px;
        border-radius: 12px;
    }
    
    /* Floating buttons mobile */
    .whatsapp-float {
        bottom: calc(1rem + env(safe-area-inset-bottom));
        right: 1rem;
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
        min-width: 56px;
        min-height: 56px;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    
    .cart-float {
        bottom: calc(7rem + env(safe-area-inset-bottom));
        right: 1rem;
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
        min-width: 56px;
        min-height: 56px;
    }
    
    .cart-count {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    
    /* Modals mobile */
    .cart-modal {
        padding: 0;
        align-items: flex-end;
        justify-content: flex-end;
        overflow: hidden;
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
    }
    
    .cart-modal-content {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 95vh;
        max-height: 95dvh;
        max-height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
        max-height: calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
        margin: 0;
        margin-top: auto;
        margin-bottom: 0;
        border-radius: 20px 20px 0 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        animation: slideUpMobile 0.3s ease;
        position: relative;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        transform: translateY(0);
        min-height: 0;
        /* Ensure footer is always visible */
        justify-content: flex-start;
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .cart-modal-header {
        padding: 1.25rem 1rem;
        flex-shrink: 0;
        position: sticky;
        top: 0;
        background: var(--warm-white);
        z-index: 1;
        border-bottom: 2px solid var(--beige-bg);
    }
    
    .cart-modal-header h2 {
        font-size: 1.4rem;
    }
    
    .cart-close {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        font-size: 1.8rem;
    }
    
    .cart-items {
        padding: 1rem;
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        min-height: 0;
        /* Allow items to scroll while footer stays fixed */
    }
    
    .cart-empty {
        padding: 3rem 1rem;
        font-size: 1rem;
    }
    
    .cart-item {
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .cart-item-info {
        width: 100%;
        min-width: 100%;
    }
    
    .cart-item-info h4 {
        font-size: 1.05rem;
        margin-bottom: 0.4rem;
        line-height: 1.3;
    }
    
    .cart-item-price {
        font-size: 1rem;
    }
    
    .cart-item-actions {
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding-top: 0.5rem;
        border-top: 1px solid var(--beige-bg);
    }
    
    .qty-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        font-size: 1.4rem;
        font-weight: 600;
    }
    
    .qty-value {
        min-width: 40px;
        font-size: 1.1rem;
        font-weight: 700;
    }
    
    .remove-btn {
        min-width: 44px;
        min-height: 44px;
        font-size: 1.4rem;
        padding: 0.5rem;
    }
    
    .cart-footer {
        padding: 1.25rem 1rem;
        padding-bottom: calc(2.5rem + env(safe-area-inset-bottom));
        flex-shrink: 0;
        position: relative;
        background: var(--warm-white);
        border-top: 2px solid var(--beige-bg);
        border-bottom: none;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 10;
        margin-top: auto;
        width: 100%;
        order: 999; /* Ensure footer is always last */
    }
    
    .cart-total {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        padding: 0.5rem 0;
    }
    
    .btn-checkout {
        min-height: 52px;
        font-size: 1.1rem;
        padding: 1.1rem;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .btn-checkout:active {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
    }
    
    .checkout-form {
        padding: 1.25rem;
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .form-group input[type="text"],
    .form-group input[type="tel"] {
        padding: 1rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 12px;
        -webkit-appearance: none;
        appearance: none;
    }
    
    .location-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-location {
        width: 100%;
        padding: 1rem;
        min-height: 48px;
        font-size: 1rem;
        white-space: normal;
    }
    
    .location-map {
        height: 250px;
        border-radius: 12px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
        padding-top: 1rem;
        padding-bottom: 1.5rem;
        border-top: 1px solid var(--beige-bg);
        position: sticky;
        bottom: 0;
        background: var(--warm-white);
        z-index: 10;
    }
    
    .form-actions .btn {
        width: 100%;
        padding: 1rem;
        min-height: 52px;
        font-size: 1.05rem;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .form-actions .btn-primary {
        background: linear-gradient(135deg, var(--logo-green) 0%, #45a049 100%);
        color: white;
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
        font-weight: 700;
        letter-spacing: 0.3px;
    }
    
    .form-actions .btn-primary:active {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
    }
    
    /* Footer mobile */
    .footer {
        padding: 2rem 0 1rem;
        padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    /* Size modal mobile */
    .size-modal-content {
        width: 90%;
        max-width: 90%;
        padding: 1.5rem;
    }
    
    .size-option-btn {
        padding: 1.1rem 1.5rem;
        min-height: 52px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile devices */
    .container {
        padding: 0 0.75rem;
    }
    
    .nav-container {
        padding: 0.75rem 0.75rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-name {
        font-size: 1.2rem;
    }
    
    .logo .tagline {
        font-size: 0.6rem;
    }
    
    .hero {
        padding: 70px 0 1.5rem;
    }
    
    .hero-content {
        padding: 1.5rem 0.75rem;
        gap: 1rem;
    }
    
    .hero-logo-icon {
        width: 220px;
        height: 220px;
        max-width: 80%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-cafe {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
        letter-spacing: 2px;
        gap: 0.4rem;
    }
    
    .tagline-dot {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin: 0;
    }
    
    .badge {
        padding: 0.9rem 1rem;
        gap: 0.7rem;
    }
    
    .badge-icon {
        font-size: 1.3rem;
    }
    
    .badge-label {
        font-size: 0.7rem;
    }
    
    .badge-value {
        font-size: 0.85rem;
    }
    
    .btn {
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .category-tabs-container {
        margin: -1rem -0.75rem 1rem -0.75rem;
        padding: 0.65rem 0;
    }
    
    .category-tabs {
        padding: 0.4rem 0.75rem;
        gap: 0.6rem;
    }
    
    .category-tab {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
        min-height: 44px;
        border-radius: 22px;
    }
    
    .category-icon {
        font-size: 1.3rem;
    }
    
    .menu-search-container {
        padding: 0 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .menu-search-wrapper {
        padding: 0.7rem 0.9rem;
    }
    
    .menu-search-input {
        font-size: 0.95rem;
    }
    
    .menu-grid {
        padding: 0.5rem 0.75rem;
        gap: 1.1rem;
    }
    
    .menu-item-content {
        padding: 1.1rem;
    }
    
    .menu-item-content h3 {
        font-size: 1.15rem;
    }
    
    .menu-item-content .price {
        font-size: 1.2rem;
    }
    
    .order-btn {
        min-height: 48px;
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .category-scroll-indicator {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    .menu-item-image {
        height: 160px;
    }
    
    .menu-item-content {
        gap: 0.6rem;
    }
    
    .addon-option span {
        font-size: 0.8rem;
        padding: 0.4rem 0.7rem;
    }
    
    .gallery-grid {
        gap: 0.75rem;
        padding: 0;
    }
    
    .testimonial-content {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .contact-content {
        padding: 0;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .whatsapp-float {
        bottom: calc(0.75rem + env(safe-area-inset-bottom));
        right: 0.75rem;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    
    .cart-float {
        bottom: calc(6.5rem + env(safe-area-inset-bottom));
        right: 0.75rem;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    
    .cart-modal-content {
        border-radius: 15px 15px 0 0;
        max-height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
        max-height: calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    }
    
    .cart-items {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
    }
    
    .cart-footer {
        flex-shrink: 0;
        margin-top: auto;
    }
    
    .cart-modal-header {
        padding: 1rem 0.75rem;
    }
    
    .cart-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .cart-items {
        padding: 0.75rem;
    }
    
    .cart-item {
        padding: 0.9rem;
    }
    
    .cart-item-info h4 {
        font-size: 1rem;
    }
    
    .cart-footer {
        padding: 1rem 0.75rem;
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    }
    
    .cart-total {
        font-size: 1.3rem;
    }
    
    .btn-checkout {
        font-size: 1rem;
        padding: 1rem;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .btn-checkout:active {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
    }
    
    .checkout-form {
        padding: 1rem;
    }
    
    .size-modal-content {
        width: calc(100% - 1.5rem);
        max-width: calc(100% - 1.5rem);
        padding: 1.25rem;
        max-height: calc(100vh - 1.5rem);
        max-height: calc(100dvh - 1.5rem);
    }
    
    .size-modal-header h3 {
        font-size: 1.25rem;
    }
    
    .size-option-btn {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        min-height: 48px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

/* Smooth scroll for older browsers */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Disable transitions during fast scroll */
body.fast-scroll * {
    transition: none !important;
    animation: none !important;
}

body.fast-scroll .video-background video {
    display: none;
}

/* ============================================
   Mobile-Specific Enhancements
   ============================================ */

/* Safe area support for notched devices */
@supports (padding: max(0px)) {
    .hero {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
    
    .whatsapp-float {
        bottom: max(1rem, env(safe-area-inset-bottom));
    }
    
    .cart-float {
        bottom: max(7rem, calc(7rem + env(safe-area-inset-bottom)));
    }
    
    .footer {
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }
}

/* Touch optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Better touch targets */
    button,
    .btn,
    .category-tab,
    .nav-link,
    .gallery-item,
    .menu-item,
    .qty-btn,
    .remove-btn {
        -webkit-tap-highlight-color: rgba(76, 175, 80, 0.2);
    }
    
    /* Remove hover effects on touch devices */
    .menu-item:hover {
        transform: none;
    }
    
    .gallery-item:hover {
        transform: none;
    }
    
    .gallery-item:hover img {
        transform: none;
    }
    
    /* Active states for touch - no transform */
    .category-tab:active {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    .order-btn:active {
        transform: scale(0.98);
    }
}

/* Better form inputs for mobile */
@media (max-width: 768px) {
    input[type="text"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        -webkit-appearance: none;
        appearance: none;
        border-radius: 12px;
    }
    
    /* Remove number input spinners */
    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        appearance: none;
        margin: 0;
    }
    
    input[type="number"] {
        -moz-appearance: textfield;
        appearance: textfield;
    }
}

/* Improved scrolling on mobile */
@media (max-width: 768px) {
    html {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Better scrollbar on mobile */
    ::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }
    
    ::-webkit-scrollbar-track {
        background: var(--beige-bg);
    }
    
    ::-webkit-scrollbar-thumb {
        background: var(--logo-green);
        border-radius: 3px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #45a049;
    }
}

/* Modal improvements for mobile */
@media (max-width: 768px) {
    .checkout-modal {
        padding: 0;
        align-items: flex-end;
    }
    
    .size-selection-modal {
        padding: 1rem;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
    }
    
    .checkout-modal-content {
        border-radius: 20px 20px 0 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
        max-height: 95vh;
        max-height: 95dvh;
        animation: slideUpMobile 0.3s ease;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .size-modal-content {
        border-radius: 20px;
        margin: auto;
        max-height: calc(100vh - 2rem);
        max-height: calc(100dvh - 2rem);
        width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        padding: 1.5rem;
        animation: slideUp 0.3s ease;
        position: relative;
        overflow-y: auto;
    }
    
    @keyframes slideUpMobile {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    /* Better modal close button */
    .cart-close,
    .checkout-close,
    .size-modal-close {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        font-size: 1.8rem;
    }
}

/* Category tabs smooth scrolling on mobile */
@media (max-width: 768px) {
    .category-tabs {
        scroll-padding: 0.5rem;
        scroll-snap-type: x mandatory;
    }
    
    .category-tab {
        scroll-snap-align: start;
    }
}

/* Menu items better spacing on mobile */
@media (max-width: 768px) {
    .menu-section {
        padding: 3rem 0;
    }
    
    .menu-items-container {
        min-height: 400px;
    }
    
    .menu-grid {
        gap: 1.75rem;
        padding: 0.25rem 0;
    }
    
    .menu-item {
        border-radius: 20px;
    }
    
    .menu-item-image {
        height: 200px;
    }
    
    .menu-item-content {
        padding: 1.5rem;
        gap: 0.65rem;
    }
    
    .menu-item-content h3 {
        font-size: 1.25rem;
    }
    
    .menu-item-content .price {
        font-size: 1.25rem;
    }
    
    .order-btn {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Gallery better touch interaction */
@media (max-width: 768px) {
    .gallery-overlay {
        transform: translateY(0);
        opacity: 0.9;
    }
    
    .gallery-item:active .gallery-overlay {
        opacity: 1;
    }
}

/* Testimonials better mobile layout */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonial-dots {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Contact section mobile improvements */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 10px var(--shadow);
    }
}

/* Footer mobile */
@media (max-width: 768px) {
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
}

/* Prevent text selection on buttons for better UX */
@media (max-width: 768px) {
    button,
    .btn,
    .category-tab {
        -webkit-user-select: none;
        user-select: none;
        -webkit-touch-callout: none;
    }
}

/* Better focus states for accessibility */
@media (max-width: 768px) {
    button:focus-visible,
    .btn:focus-visible,
    .category-tab:focus-visible,
    input:focus-visible:not(.menu-search-input) {
        outline: 3px solid var(--logo-green);
        outline-offset: 2px;
    }
}

/* Landscape mobile optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 70px 0 1.5rem;
    }
    
    .hero-logo-icon {
        width: 80px;
        height: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cafe {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .nav-menu {
        height: calc(100vh - 70px);
        max-height: 500px;
    }
    
    .cart-modal-content {
        max-height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
        max-height: calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    }
    
    .checkout-modal-content {
        max-height: 85vh;
        max-height: 85dvh;
    }
}
