/* ==========================================================================
   ADAM'S JUICE BAR & RESTAURANT - LUXURY DARK & GOLD STYLESHEET
   Typography: Flama Font Family (Clean, Modern, Geometric)
   ========================================================================== */

/* Local & System Fallback Font Stack for Flama */
@font-face {
    font-family: 'Flama';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Flama'), local('Flama-Regular'), local('Flama Regular');
}

@font-face {
    font-family: 'Flama';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Flama-Medium'), local('Flama Medium');
}

@font-face {
    font-family: 'Flama';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Flama-Bold'), local('Flama Bold');
}

@font-face {
    font-family: 'Flama';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: local('Flama-Black'), local('Flama-Heavy'), local('Flama Heavy');
}

:root {
    --bg-main: #0a0b0e;
    --bg-card: rgba(22, 25, 34, 0.75);
    --bg-card-hover: rgba(28, 32, 45, 0.9);
    --bg-glass: rgba(18, 20, 28, 0.85);
    --bg-modal: #11131a;
    
    /* Gold Gradients & Accents */
    --gold-primary: #dfb44c;
    --gold-light: #fbe38e;
    --gold-dark: #ad7c20;
    --gold-gradient: linear-gradient(135deg, #fde492 0%, #dfb44c 50%, #b88528 100%);
    --gold-gradient-soft: linear-gradient(135deg, rgba(253, 228, 146, 0.15) 0%, rgba(223, 180, 76, 0.05) 100%);
    --gold-border: rgba(223, 180, 76, 0.25);
    --gold-border-bright: rgba(253, 228, 146, 0.6);
    --gold-glow: 0 0 25px rgba(223, 180, 76, 0.25);
    --gold-glow-strong: 0 0 35px rgba(223, 180, 76, 0.45);

    /* Social Brand Colors */
    --whatsapp-color: #25d366;
    --whatsapp-glow: 0 0 25px rgba(37, 211, 102, 0.3);
    --instagram-grad: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --google-color: #4285F4;
    --star-gold: #ffb703;

    /* Text Colors */
    --text-pure: #ffffff;
    --text-primary: #f3f4f8;
    --text-secondary: #9da3b4;
    --text-muted: #676d82;

    /* Layout & Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-family: 'Flama', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: radial-gradient(circle at 50% 0%, #1f1b13 0%, #0c0d12 45%, #070709 100%);
    background-attachment: fixed;
    padding: 0;
    margin: 0;
    position: relative;
    font-family: 'Flama', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Ambient Lighting Background Accents */
.ambient-glow-top {
    position: fixed;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(223, 180, 76, 0.18) 0%, rgba(223, 180, 76, 0) 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

.ambient-glow-bottom {
    position: fixed;
    bottom: -150px;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(50px);
}

/* Mobile App Wrapper Frame */
.app-container {
    width: 100%;
    max-width: 480px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    padding: 24px 18px 40px;
}

/* Top Quick Bar (Share & Live Status) */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    background: rgba(18, 22, 32, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(24, 28, 38, 0.8);
    border: 1px solid var(--gold-border);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.icon-btn:hover, .icon-btn:active {
    transform: scale(1.08);
    border-color: var(--gold-light);
    box-shadow: var(--gold-glow);
}

/* Header & Brand Section */
.brand-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.logo-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2.5px solid var(--gold-primary);
    box-shadow: 0 0 30px rgba(223, 180, 76, 0.4), 0 10px 25px rgba(0, 0, 0, 0.6);
    margin-bottom: 16px;
    transition: transform var(--transition-bounce);
    overflow: hidden;
}

.logo-wrapper::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, var(--gold-primary) 30%, transparent 60%, var(--gold-light) 90%, transparent 100%);
    z-index: -1;
    animation: rotate-border 6s linear infinite;
}

@keyframes rotate-border {
    100% { transform: rotate(360deg); }
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.brand-title {
    font-family: 'Flama', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    text-shadow: 0 2px 10px rgba(223, 180, 76, 0.2);
}

.brand-tagline {
    font-family: 'Flama', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.brand-desc {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-desc span {
    color: var(--gold-primary);
}

/* Ticker / Offers Banner (Clean Design without emojis) */
.offers-ticker {
    margin-bottom: 24px;
    background: linear-gradient(90deg, rgba(223, 180, 76, 0.12) 0%, rgba(22, 25, 34, 0.9) 50%, rgba(223, 180, 76, 0.12) 100%);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.offers-ticker:hover {
    border-color: var(--gold-light);
    box-shadow: 0 4px 15px rgba(223, 180, 76, 0.18);
}

.ticker-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(223, 180, 76, 0.15);
    border: 1px solid var(--gold-border);
    color: var(--gold-light);
    flex-shrink: 0;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
}

.ticker-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gold-light);
}

.ticker-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticker-arrow {
    color: var(--gold-primary);
    font-size: 1.1rem;
    font-weight: bold;
}

/* ==========================================================================
   THE 4 PRIMARY ACTION LINKS (MAIN CORE)
   ========================================================================== */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.primary-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    backdrop-filter: blur(16px);
    transition: transform var(--transition-bounce), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.primary-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 70%);
    pointer-events: none;
}

.primary-card:hover, .primary-card:active {
    transform: translateY(-4px) scale(1.01);
    background: var(--bg-card-hover);
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow), 0 12px 25px rgba(0, 0, 0, 0.5);
}

/* Card Specific Themes & Glows */

/* 1. Menu Card */
.card-menu {
    border-color: rgba(223, 180, 76, 0.45);
    background: linear-gradient(135deg, rgba(34, 30, 20, 0.85) 0%, rgba(18, 20, 28, 0.8) 100%);
}

.card-menu .card-icon-box {
    background: var(--gold-gradient);
    color: #111;
    box-shadow: var(--gold-glow);
}

/* 2. WhatsApp Community Card */
.card-whatsapp {
    border-color: rgba(37, 211, 102, 0.3);
}

.card-whatsapp:hover, .card-whatsapp:active {
    border-color: var(--whatsapp-color);
    box-shadow: var(--whatsapp-glow), 0 12px 25px rgba(0, 0, 0, 0.5);
}

.card-whatsapp .card-icon-box {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.4);
}

/* 3. Instagram Card */
.card-instagram {
    border-color: rgba(225, 48, 108, 0.25);
}

.card-instagram:hover, .card-instagram:active {
    border-color: #e1306c;
    box-shadow: 0 0 25px rgba(225, 48, 108, 0.35), 0 12px 25px rgba(0, 0, 0, 0.5);
}

.card-instagram .card-icon-box {
    background: var(--instagram-grad);
    color: #ffffff;
    box-shadow: 0 0 18px rgba(225, 48, 108, 0.35);
}

/* 4. Google Review Card */
.card-google {
    border-color: rgba(66, 133, 244, 0.25);
}

.card-google:hover, .card-google:active {
    border-color: #4285F4;
    box-shadow: 0 0 25px rgba(66, 133, 244, 0.3), 0 12px 25px rgba(0, 0, 0, 0.5);
}

.card-google .card-icon-box {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    color: #1a73e8;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Icon Box Structure */
.card-icon-box {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: transform var(--transition-bounce);
}

.card-icon-box svg {
    width: 26px;
    height: 26px;
}

.primary-card:hover .card-icon-box {
    transform: scale(1.1) rotate(2deg);
}

/* Card Content Details */
.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.card-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-pure);
    letter-spacing: 0.2px;
}

.card-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    background: rgba(223, 180, 76, 0.15);
    color: var(--gold-light);
    border: 1px solid rgba(223, 180, 76, 0.3);
}

.badge-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #6ee7b7;
    border-color: rgba(37, 211, 102, 0.3);
}

.badge-insta {
    background: rgba(225, 48, 108, 0.15);
    color: #f472b6;
    border-color: rgba(225, 48, 108, 0.3);
}

.badge-gold-stars {
    background: rgba(255, 183, 3, 0.15);
    color: #fde047;
    border-color: rgba(255, 183, 3, 0.35);
}

.card-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.35;
}

.card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    opacity: 0.8;
    transition: transform var(--transition-bounce), opacity var(--transition-fast);
}

.primary-card:hover .card-arrow {
    transform: translateX(4px);
    opacity: 1;
    color: var(--gold-light);
}

/* Quick Action Strip (Call, Maps, Share) */
.quick-action-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
    transition: var(--transition-bounce);
    cursor: pointer;
}

.quick-btn svg {
    width: 20px;
    height: 20px;
    color: var(--gold-primary);
    transition: transform var(--transition-fast);
}

.quick-btn:hover, .quick-btn:active {
    background: var(--bg-card-hover);
    border-color: var(--gold-border);
    transform: translateY(-2px);
}

.quick-btn:hover svg {
    transform: scale(1.15);
}

/* Footer Section */
.site-footer {
    text-align: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-size: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-brand {
    font-weight: 700;
    color: var(--gold-light);
}

/* ==========================================================================
   DIGITAL MENU MODAL & SHARED MENU ITEM CARDS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 5, 8, 0.88);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.modal-sheet {
    width: 100%;
    max-width: 520px;
    margin: auto;
    max-height: 85vh;
    background: var(--bg-modal);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gold-border);
    display: flex;
    flex-direction: column;
    transform: scale(0.94) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), var(--gold-glow);
    overflow: hidden;
}

.modal-overlay.active .modal-sheet {
    transform: scale(1) translateY(0);
}

/* Modal Drag Handle & Header */
.modal-drag-handle {
    width: 44px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin: 12px auto 6px;
}

.modal-header {
    padding: 12px 20px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-header-info h2 {
    font-family: 'Flama', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-header-info p {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.modal-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Menu Controls (Search + Filters) */
.menu-controls {
    padding: 14px 20px 8px;
    background: rgba(14, 16, 23, 0.95);
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-search-box {
    position: relative;
    width: 100%;
}

.menu-search-box input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    background: rgba(26, 30, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--text-pure);
    font-size: 0.88rem;
    font-family: 'Flama', sans-serif;
    outline: none;
    transition: var(--transition-fast);
}

.menu-search-box input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px rgba(223, 180, 76, 0.2);
}

.menu-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    display: flex;
}

/* Category Filter Tabs */
.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    white-space: nowrap;
    padding: 8px 16px;
    background: rgba(24, 28, 38, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Flama', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.cat-pill.active {
    background: var(--gold-gradient);
    color: #0b0c10;
    border-color: var(--gold-light);
    font-weight: 800;
    box-shadow: var(--gold-glow);
}

/* Menu Items List Container */
.menu-list-container {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Category Hero Banner */
.category-hero-card {
    height: 130px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: flex-end;
    padding: 14px 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.category-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 11, 14, 0.15) 0%, rgba(10, 11, 14, 0.88) 100%);
    pointer-events: none;
}

.category-hero-info {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
}

.category-hero-info .section-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.category-hero-info .section-count {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--gold-light);
    background: rgba(10, 11, 14, 0.75);
    padding: 3px 9px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(223, 180, 76, 0.3);
    backdrop-filter: blur(6px);
}

/* Clean, Sleek Typography Menu Item Card */
.menu-item-card {
    background: rgba(22, 25, 34, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.menu-item-card:hover {
    border-color: var(--gold-border);
    background: rgba(28, 32, 44, 0.9);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), var(--gold-glow);
    transform: translateY(-2px);
}

.item-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.item-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.item-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-pure);
    letter-spacing: 0.1px;
}

.item-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--gold-light);
    white-space: nowrap;
}

.item-tags-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.diet-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 3px;
    border: 1px solid #10b981;
}

.diet-indicator.non-veg {
    border-color: #ef4444;
}

.diet-indicator .diet-circle {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #10b981;
}

.diet-indicator.non-veg .diet-circle {
    background-color: #ef4444;
}

.item-mini-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 7px;
    background: rgba(223, 180, 76, 0.12);
    color: var(--gold-light);
    border-radius: 4px;
}

.item-desc {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.45;
}

.item-order-action {
    margin-top: 4px;
    display: flex;
    justify-content: flex-end;
}

.btn-order-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #4ade80;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-order-wa:hover, .btn-order-wa:active {
    background: #25d366;
    color: #111;
    border-color: #25d366;
}

.btn-order-wa svg {
    width: 14px;
    height: 14px;
}

/* Empty State */
.empty-menu-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* ==========================================================================
   QR CODE & SHARE MODAL
   ========================================================================== */
.share-card-content {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.qr-box {
    background: #ffffff;
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: 0 0 25px rgba(223, 180, 76, 0.3);
    display: inline-flex;
}

#qrcode-canvas {
    width: 180px;
    height: 180px;
}

.share-url-box {
    width: 100%;
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 6px 6px 6px 16px;
    align-items: center;
}

.share-url-text {
    flex: 1;
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.btn-copy {
    padding: 8px 16px;
    background: var(--gold-gradient);
    color: #111;
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-copy:hover {
    box-shadow: var(--gold-glow);
}

/* Toast Notification */
.toast-msg {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1e2230;
    color: var(--gold-light);
    border: 1px solid var(--gold-border);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--gold-glow);
    z-index: 200;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

/* Desktop & Tablet Enhancements */
@media (min-width: 640px) {
    .app-container {
        padding: 40px 24px 60px;
    }

    .modal-sheet {
        height: 82vh;
        border-radius: 24px;
        margin-bottom: 5vh;
    }
}

/* ==========================================================================
   LUXURY LANGUAGE SWITCHER & GOOGLE TRANSLATE STYLING
   ========================================================================== */
.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    background: rgba(22, 25, 34, 0.85);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-full);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Flama', sans-serif;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.lang-btn svg {
    width: 15px;
    height: 15px;
    color: var(--gold-primary);
}

.lang-btn:hover, .lang-btn:active {
    background: var(--gold-gradient);
    color: #111;
    border-color: var(--gold-light);
    box-shadow: var(--gold-glow);
}

.lang-btn:hover svg, .lang-btn:active svg {
    color: #111;
}

/* Language Selection Modal List */
.lang-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px 20px 28px;
    max-height: 60vh;
    overflow-y: auto;
}

@media (max-width: 380px) {
    .lang-options-grid {
        grid-template-columns: 1fr;
    }
}

.lang-option-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: rgba(22, 25, 34, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: left;
    font-family: 'Flama', sans-serif;
}

.lang-option-btn:hover {
    border-color: var(--gold-border);
    background: rgba(30, 35, 48, 0.9);
}

.lang-option-btn.active {
    border-color: var(--gold-primary);
    background: rgba(223, 180, 76, 0.12);
}

.lang-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lang-native {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-light);
}

.lang-english {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.lang-check {
    color: var(--gold-primary);
    font-weight: 800;
    font-size: 1rem;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.lang-option-btn.active .lang-check {
    opacity: 1;
}

/* ==========================================================================
   CLEAN GOOGLE TRANSLATE BANNER & TOOLTIP OVERRIDES
   ========================================================================== */
body {
    top: 0 !important;
    position: static !important;
}

.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc {
    display: none !important;
    visibility: hidden !important;
}

.goog-tooltip, .goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

#google_translate_element {
    display: none !important;
}

