/* ========================================
   MISTRAL — Restaurante de Mariscos | Alta Cocina
   Ultra Premium Mobile-First Design
   ======================================== */

:root {
    --primary: #1B6B93;
    --primary-light: #4EA8C8;
    --primary-dark: #0F4C6B;
    --primary-glow: rgba(27, 107, 147, 0.35);
    --accent: #C8A84E;
    --accent-light: #E0C76E;
    --accent-dark: #A08535;
    --gold: #C8A84E;
    --gold-light: #E0C76E;
    --bg-dark: #060A10;
    --bg-card: #0C1219;
    --bg-card-hover: #121C26;
    --bg-surface: #0E151D;
    --bg-elevated: #152230;
    --text-white: #FFFFFF;
    --text-light: #E8ECF0;
    --text-gray: #96A8B8;
    --text-muted: #5A7080;
    --success: #25D366;
    --danger: #E53935;
    --border: rgba(200, 168, 78, 0.08);
    --border-light: rgba(200, 168, 78, 0.15);
    --shadow-primary: rgba(27, 107, 147, 0.25);
    --shadow-accent: rgba(200, 168, 78, 0.2);
    --shadow-deep: rgba(0,0,0,0.5);
    --gradient-primary: linear-gradient(135deg, #1B6B93 0%, #4EA8C8 50%, #0F4C6B 100%);
    --gradient-accent: linear-gradient(135deg, #C8A84E 0%, #E0C76E 50%, #A08535 100%);
    --gradient-dark: linear-gradient(180deg, #060A10 0%, #0E151D 100%);
    --gradient-card: linear-gradient(145deg, #0E151D 0%, #0C1219 100%);
    --gradient-ocean: linear-gradient(135deg, #0F4C6B 0%, #1B6B93 50%, #4EA8C8 100%);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===== WELCOME SCREEN ===== */
.welcome-screen {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.6s ease;
}

.welcome-screen::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(27,107,147,0.06) 100%);
    border-top: 1px solid rgba(27,107,147,0.08);
    animation: waveSlide 12s linear infinite;
    z-index: 1;
}

.welcome-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 0;
    background: linear-gradient(180deg, rgba(200,168,78,0.3), transparent);
    animation: lineReveal 2s ease 0.3s forwards;
    z-index: 1;
}

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

@keyframes lineReveal {
    0% { height: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { height: 60px; opacity: 0; }
}

.welcome-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 50% 30%, rgba(27,107,147,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 80%, rgba(200,168,78,0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 70%, rgba(27,107,147,0.06) 0%, transparent 40%);
    z-index: 1;
}

.welcome-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
}

.welcome-particle {
    position: absolute;
    bottom: -60px;
    opacity: 0.15;
    animation: particleFloat linear infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.12; }
    90% { opacity: 0.12; }
    100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

.welcome-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 480px;
    width: 100%;
}

/* Logo Container - Premium Animated */
.welcome-logo-container {
    width: 380px;
    height: 300px;
    margin: 0 auto 32px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: logoReveal 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    filter: drop-shadow(0 12px 50px rgba(200,168,78,0.2));
}

.welcome-logo-container::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,168,78,0.08) 0%, rgba(27,107,147,0.05) 40%, transparent 70%);
    animation: logoGlowPulse 4s ease-in-out infinite;
    z-index: -1;
}

.welcome-logo-container::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(200,168,78,0.06);
    animation: logoRingExpand 3s ease-in-out infinite;
    z-index: -1;
}

.welcome-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.6) translateY(30px); filter: blur(10px) drop-shadow(0 12px 50px rgba(200,168,78,0.2)); }
    40% { opacity: 1; filter: blur(0px) drop-shadow(0 12px 50px rgba(200,168,78,0.2)); }
    70% { transform: scale(1.04) translateY(-5px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); filter: drop-shadow(0 8px 30px rgba(200,168,78,0.15)); }
    50% { transform: translateY(-8px); filter: drop-shadow(0 16px 40px rgba(200,168,78,0.25)); }
}

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

@keyframes logoRingExpand {
    0%, 100% { opacity: 0.3; transform: scale(0.9); }
    50% { opacity: 0.6; transform: scale(1.15); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

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

.welcome-text-block {
    animation: fadeInUp 1s ease 1.2s forwards;
    opacity: 0;
}

.welcome-main-title {
    font-family: 'Playfair Display', 'Bebas Neue', serif;
    font-size: 1.8rem;
    letter-spacing: 4px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-transform: uppercase;
    animation: shimmerText 3s linear infinite;
    background-size: 200% auto;
}

@keyframes shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.welcome-main-title {
    background: linear-gradient(90deg, #C8A84E 0%, #E0C76E 25%, #FFFFFF 50%, #E0C76E 75%, #C8A84E 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-main-desc {
    color: var(--text-gray);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 18px;
    padding: 0 10px;
}

.welcome-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    padding: 0 30px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,168,78,0.35), transparent);
}

.divider-icon {
    color: var(--accent);
    font-size: 1.1rem;
}

.welcome-subtitle {
    font-family: 'Playfair Display', 'Bebas Neue', serif;
    font-size: 1.15rem;
    color: var(--primary-light);
    letter-spacing: 6px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.welcome-schedule {
    margin-bottom: 24px;
}

.schedule-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 0;
    color: var(--text-gray);
    font-size: 0.82rem;
}

.schedule-row i {
    color: var(--accent);
    font-size: 0.75rem;
}

.welcome-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 48px;
    background: var(--gradient-accent);
    color: #0A0E14;
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 30px var(--shadow-accent);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    animation: btnPulse 2.5s ease-in-out infinite;
}

.welcome-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    transform: rotate(45deg) translateX(-100%);
    animation: btnShine 4s ease-in-out infinite;
}

@keyframes btnShine {
    0%, 100% { transform: rotate(45deg) translateX(-100%); }
    50% { transform: rotate(45deg) translateX(100%); }
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 8px 30px var(--shadow-accent); }
    50% { box-shadow: 0 12px 45px rgba(200,168,78,0.4), 0 0 20px rgba(200,168,78,0.15); }
}

.welcome-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--shadow-accent);
}

.welcome-btn:active {
    transform: scale(0.96);
}

/* ===== APP CONTAINER ===== */
.app-container {
    min-height: 100vh;
    background: var(--bg-dark);
}

/* ===== HEADER ===== */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(6,10,16,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: transform 0.35s ease;
}

.app-header.header-hidden {
    transform: translateY(-100%);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    max-width: 600px;
    margin: 0 auto;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo-img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: contain;
    border: none;
    background: transparent;
    padding: 0;
    filter: drop-shadow(0 2px 8px rgba(200,168,78,0.2));
    transition: all 0.3s ease;
}

.header-logo-img:hover {
    filter: drop-shadow(0 4px 15px rgba(200,168,78,0.35));
    transform: scale(1.05);
}

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

.header-title {
    font-family: 'Playfair Display', 'Bebas Neue', serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--text-white);
    line-height: 1;
}

.header-tagline {
    font-size: 0.6rem;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

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

.cart-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

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

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--accent);
    color: #0A0E14;
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark);
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    margin-top: 63px;
    padding: 10px 16px;
    overflow: hidden;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.promo-inner {
    display: flex;
    gap: 12px;
    animation: scrollPromo 25s linear infinite;
    width: max-content;
}

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

.promo-chip {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.promo-chip {
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-chip:hover {
    transform: translateY(-1px);
}

.promo-chip.fire {
    background: linear-gradient(135deg, rgba(27,107,147,0.2), rgba(27,107,147,0.08));
    color: var(--primary-light);
    border: 1px solid rgba(27,107,147,0.2);
}

.promo-chip.gold {
    background: linear-gradient(135deg, rgba(200,168,78,0.15), rgba(200,168,78,0.05));
    color: var(--accent);
    border: 1px solid rgba(200,168,78,0.2);
}

.promo-chip.green {
    background: linear-gradient(135deg, rgba(37,211,102,0.15), rgba(37,211,102,0.05));
    color: var(--success);
    border: 1px solid rgba(37,211,102,0.2);
}

/* ===== CATEGORY NAV ===== */
.category-nav {
    position: sticky;
    top: 63px;
    z-index: 90;
    background: rgba(6,10,16,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: top 0.35s ease;
}

.category-nav.nav-header-hidden {
    top: 0;
}

.category-nav-inner {
    display: flex;
    gap: 8px;
    padding: 10px 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    max-width: 600px;
    margin: 0 auto;
}

.category-nav-inner::-webkit-scrollbar { display: none; }

.cat-chip {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    border-radius: var(--radius-full);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.cat-chip:hover, .cat-chip.active {
    background: linear-gradient(135deg, rgba(200,168,78,0.15), rgba(200,168,78,0.05));
    border-color: rgba(200,168,78,0.3);
}

.cat-chip.active {
    box-shadow: 0 4px 20px rgba(200,168,78,0.12);
}

.cat-chip-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    font-size: 0.9rem;
}

.cat-chip-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-chip-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}

.cat-chip.active .cat-chip-label {
    color: var(--accent-light);
}

/* ===== MENU CONTENT ===== */
.menu-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 10px 12px 120px;
}

/* Section */
.menu-section {
    margin-bottom: 32px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 4px 12px;
}

.section-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(200,168,78,0.12), rgba(200,168,78,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.section-info h2 {
    font-family: 'Playfair Display', 'Bebas Neue', serif;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    color: var(--text-white);
}

.section-info p {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.product-card {
    background: var(--gradient-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    border-color: rgba(200,168,78,0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 85%;
    overflow: hidden;
    background: var(--bg-elevated);
}

.product-img-wrapper img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.4s ease;
    opacity: 0;
}

.product-img-wrapper.loaded img {
    opacity: 1;
}

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

.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 10px;
    background: var(--gradient-accent);
    color: #0A0E14;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-info {
    padding: 10px;
}

.product-name {
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--text-white);
    margin-bottom: 3px;
    line-height: 1.2;
}

.product-desc {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-weight: 800;
    font-size: 1rem;
    color: var(--accent);
}

.product-price .original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 500;
    margin-right: 4px;
}

.product-add-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gradient-ocean);
    color: white;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px var(--shadow-primary);
}

.product-add-btn:hover {
    transform: scale(1.1);
}

.product-add-btn:active {
    transform: scale(0.9);
}

/* ===== EXPANDABLE LIST (Beverages) ===== */
.expandable-section .section-header {
    position: relative;
}

.section-price-range {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 600;
    background: rgba(200,168,78,0.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(200,168,78,0.15);
}

.beverage-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.beverage-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--gradient-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.beverage-item:hover {
    border-color: rgba(200,168,78,0.15);
    background: var(--bg-card-hover);
}

.beverage-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.beverage-name {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text-white);
}

.beverage-detail {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.beverage-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.beverage-price {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--accent);
}

.beverage-add-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(27,107,147,0.12);
    border: 1px solid rgba(27,107,147,0.2);
    color: var(--primary-light);
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.beverage-add-btn:hover {
    background: var(--primary);
    color: white;
}

/* ===== PROMO CARDS ===== */
.promo-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promo-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 18px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at top right, rgba(200,168,78,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.promo-card:hover {
    border-color: rgba(200,168,78,0.2);
    transform: translateY(-2px);
}

.promo-badge-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-accent);
    color: #0A0E14;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-title {
    font-family: 'Playfair Display', 'Bebas Neue', serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 6px;
}

.promo-desc {
    font-size: 0.75rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 12px;
}

.promo-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promo-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
}

.promo-price .promo-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 6px;
}

.promo-add-btn {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    background: var(--gradient-ocean);
    color: white;
    border: none;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px var(--shadow-primary);
}

.promo-add-btn:hover {
    transform: scale(1.05);
}

/* ===== CART FLOAT BAR ===== */
.cart-float {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 560px;
    z-index: 80;
    cursor: pointer;
    animation: slideUpBounce 0.4s ease;
}

@keyframes slideUpBounce {
    0% { transform: translateX(-50%) translateY(100px); opacity: 0; }
    70% { transform: translateX(-50%) translateY(-5px); }
    100% { transform: translateX(-50%) translateY(0); opacity: 1; }
}

.cart-float-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: linear-gradient(135deg, #1B6B93, #0F4C6B);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px var(--shadow-primary), 0 0 0 1px rgba(200,168,78,0.15) inset;
}

.cart-float-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
}

.cart-float-left i {
    font-size: 1.1rem;
}

.cart-float-right {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.cart-float-total {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--accent-light);
}

.cart-float-arrow {
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.9;
}

/* ===== CART PANEL ===== */
.cart-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.cart-panel {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    max-height: 85vh;
    background: var(--bg-surface);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    z-index: 201;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
}

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

.cart-handle {
    width: 40px;
    height: 4px;
    background: rgba(200,168,78,0.25);
    border-radius: 2px;
    margin: 10px auto 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 12px;
    border-bottom: 1px solid var(--border);
}

.cart-header h2 {
    font-family: 'Playfair Display', 'Bebas Neue', serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-gray);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
}

.cart-empty {
    text-align: center;
    padding: 40px 0;
}

.cart-empty-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.cart-empty p {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.cart-empty span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.cart-item-img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    background: var(--bg-elevated);
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-sauces {
    font-size: 0.65rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

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

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-white);
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

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

.cart-qty-btn.remove:hover {
    background: var(--danger);
    border-color: var(--danger);
}

.cart-qty-val {
    font-weight: 700;
    font-size: 0.85rem;
    min-width: 20px;
    text-align: center;
}

.cart-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cart-total-row span:first-child {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.cart-total-amount {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--accent);
}

.cart-notes {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    resize: none;
    height: 50px;
    margin-bottom: 12px;
}

.cart-notes::placeholder {
    color: var(--text-muted);
}

.cart-checkout-btn {
    width: 100%;
    padding: 14px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.cart-checkout-btn:hover {
    background: #20BD5A;
    transform: translateY(-1px);
}

/* ===== FLOATING MENU FAB ===== */
.menu-fab {
    position: fixed;
    bottom: 20px;
    right: 16px;
    z-index: 70;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border: 1px solid rgba(200,168,78,0.15);
    border-radius: var(--radius-full);
    color: var(--text-white);
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.menu-fab:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.menu-fab-label {
    font-size: 0.72rem;
    font-weight: 600;
}

/* ===== NAV PANEL ===== */
.menu-nav-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.menu-nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.menu-nav-panel {
    position: fixed;
    bottom: 0; right: 0;
    width: 280px;
    max-height: 80vh;
    background: var(--bg-surface);
    border-radius: var(--radius-xl) 0 0 0;
    z-index: 151;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.menu-nav-panel.open {
    transform: translateX(0);
}

.menu-nav-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-bottom: 1px solid var(--border);
}

.menu-nav-logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: contain;
    background: transparent;
    padding: 0;
    filter: drop-shadow(0 2px 8px rgba(200,168,78,0.2));
}

.menu-nav-header h3 {
    flex: 1;
    font-family: 'Playfair Display', 'Bebas Neue', serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.menu-nav-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.menu-nav-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}

.menu-nav-cart-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s ease;
}

.menu-nav-cart-summary:hover {
    border-color: rgba(200,168,78,0.3);
}

.menu-nav-cart-icon {
    position: relative;
    font-size: 1.1rem;
    color: var(--accent);
}

.menu-nav-cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: var(--accent);
    color: #0A0E14;
    font-size: 0.55rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-nav-cart-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-nav-cart-title {
    font-weight: 600;
    font-size: 0.8rem;
}

.menu-nav-cart-detail {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.menu-nav-divider {
    height: 1px;
    background: var(--border);
    margin: 12px 0;
}

.menu-nav-section-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
    padding-left: 4px;
}

.menu-nav-categories {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-nav-cat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-light);
    text-decoration: none;
}

.menu-nav-cat-item:hover {
    background: rgba(200,168,78,0.08);
    color: var(--accent-light);
}

.menu-nav-cat-item span.cat-emoji {
    font-size: 1.1rem;
}

.menu-nav-cat-item span.cat-label {
    font-size: 0.82rem;
    font-weight: 500;
}

.menu-nav-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-nav-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.menu-nav-info-row i {
    color: var(--accent);
    width: 16px;
    text-align: center;
}

/* ===== FOOTER ===== */
.app-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 30px 16px;
}

.footer-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo-img {
    width: 140px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 20px rgba(200,168,78,0.15));
}

.footer-schedule {
    margin-bottom: 16px;
}

.footer-schedule h4 {
    font-family: 'Playfair Display', 'Bebas Neue', serif;
    font-size: 1rem;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.footer-schedule p {
    font-size: 0.75rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.footer-info span {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.footer-info span i {
    color: var(--accent);
}

.footer-copy {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 300;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
}

.modal-content {
    width: 100%;
    max-width: 500px;
    max-height: 70vh;
    background: var(--bg-surface);
    border-radius: var(--radius-xl) var(--radius-xl) var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalSlideUp 0.35s ease;
}

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

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-family: 'Playfair Display', 'Bebas Neue', serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.sauce-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.sauce-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.sauce-option.selected {
    border-color: var(--accent);
    background: rgba(200,168,78,0.08);
}

.sauce-option:hover {
    border-color: rgba(200,168,78,0.3);
}

.sauce-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: transparent;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.sauce-option.selected .sauce-check {
    background: var(--accent);
    border-color: var(--accent);
    color: #0A0E14;
}

.sauce-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
}

.sauce-heat {
    font-size: 0.65rem;
    margin-left: auto;
}

.modal-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
}

.modal-confirm-btn {
    width: 100%;
    padding: 13px;
    background: var(--gradient-ocean);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px var(--shadow-primary);
    transition: all 0.2s ease;
}

.modal-confirm-btn:hover {
    transform: translateY(-1px);
}

/* ===== IMAGE PREVIEW ===== */
.image-preview-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 400;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-preview-overlay.active {
    display: flex;
}

.image-preview-container {
    max-width: 500px;
    width: 100%;
    position: relative;
}

.image-preview-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-preview-img-wrapper {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
}

.image-preview-img {
    width: 100%;
    display: block;
}

.image-preview-info {
    text-align: center;
}

.image-preview-info h3 {
    font-family: 'Playfair Display', 'Bebas Neue', serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.image-preview-info p {
    font-size: 0.78rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.image-preview-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 14px;
}

.image-preview-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: var(--gradient-ocean);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px var(--shadow-primary);
}

/* ===== ADD ANIMATION ===== */
@keyframes addedPulse {
    0% { box-shadow: 0 0 0 0 rgba(200,168,78,0.5); }
    70% { box-shadow: 0 0 0 12px rgba(200,168,78,0); }
    100% { box-shadow: 0 0 0 0 rgba(200,168,78,0); }
}

.product-card.added {
    animation: addedPulse 0.6s ease;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    padding: 10px 20px;
    background: var(--bg-elevated);
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid rgba(200,168,78,0.15);
    z-index: 500;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== BEVERAGE IMAGE ===== */
.beverage-img-container {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-elevated);
}

.beverage-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.beverage-img-container.loaded img {
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 380px) {
    .welcome-logo-container {
        width: 280px;
        height: 220px;
    }
    .welcome-main-title {
        font-size: 1.4rem;
    }
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .sauce-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .welcome-logo-container {
        width: 420px;
        height: 340px;
    }
}

@media (min-width: 1024px) {
    .menu-content {
        max-width: 800px;
    }
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    .welcome-logo-container {
        width: 480px;
        height: 380px;
    }
}

/* ===== OCEAN DECORATIVE ===== */
.ocean-pattern-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 0;
    opacity: 0.3;
}

.ocean-pattern-divider span {
    font-size: 0.7rem;
    color: var(--accent);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 4px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(200,168,78,0.25);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(200,168,78,0.4);
}

/* ===== THANK YOU MODAL ===== */
.thankyou-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.thankyou-content {
    text-align: center;
    max-width: 380px;
    padding: 40px 30px;
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(200,168,78,0.15);
    animation: modalSlideUp 0.4s ease;
}

.thankyou-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.thankyou-content h2 {
    font-family: 'Playfair Display', 'Bebas Neue', serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.thankyou-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 6px;
}

.thankyou-order-num {
    font-weight: 700;
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 20px;
}

.thankyou-close-btn {
    padding: 12px 30px;
    background: var(--gradient-ocean);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--shadow-primary);
}

/* ===== PREMIUM SECTION ANIMATIONS ===== */
.menu-section {
    opacity: 0;
    transform: translateY(20px);
    animation: sectionReveal 0.6s ease forwards;
}

.menu-section:nth-child(1) { animation-delay: 0.1s; }
.menu-section:nth-child(2) { animation-delay: 0.15s; }
.menu-section:nth-child(3) { animation-delay: 0.2s; }
.menu-section:nth-child(4) { animation-delay: 0.25s; }
.menu-section:nth-child(5) { animation-delay: 0.3s; }
.menu-section:nth-child(6) { animation-delay: 0.35s; }
.menu-section:nth-child(7) { animation-delay: 0.4s; }
.menu-section:nth-child(8) { animation-delay: 0.45s; }
.menu-section:nth-child(9) { animation-delay: 0.5s; }
.menu-section:nth-child(10) { animation-delay: 0.55s; }

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

/* Product card enter animation */
.product-card {
    animation: cardFadeIn 0.4s ease forwards;
}

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

/* Premium glow on active category */
.cat-chip.active {
    box-shadow: 0 4px 20px rgba(200,168,78,0.12);
    position: relative;
}

.cat-chip.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* Section header premium underline */
.section-header::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
    margin-top: 8px;
    margin-left: 56px;
}

/* Enhanced promo card gradient */
.promo-card {
    background: linear-gradient(145deg, #0E151D 0%, #0C1219 60%, rgba(27,107,147,0.04) 100%);
}

/* WhatsApp button glow */
.cart-checkout-btn {
    position: relative;
    overflow: hidden;
}

.cart-checkout-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.cart-checkout-btn:hover::before {
    transform: rotate(45deg) translateX(100%);
}

/* Premium menu nav item hover */
.menu-nav-cat-item {
    position: relative;
}

.menu-nav-cat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--accent);
    border-radius: 3px;
    transition: height 0.2s ease;
}

.menu-nav-cat-item:hover::before {
    height: 60%;
}

.menu-nav-cat-icon {
    font-size: 1.1rem;
}

.menu-nav-cat-name {
    font-size: 0.82rem;
    font-weight: 500;
    flex: 1;
}

.menu-nav-cat-item i.fa-chevron-right {
    font-size: 0.65rem;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.menu-nav-cat-item:hover i.fa-chevron-right {
    transform: translateX(3px);
    color: var(--accent);
}

/* Selection indicator on page load */
@keyframes headerSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.app-header {
    animation: headerSlideDown 0.5s ease 0.1s both;
}

/* Smooth category nav scroll indicator */
.category-nav-inner::after {
    content: '';
    flex-shrink: 0;
    width: 16px;
}
