/* --- Sarah Sushi: Final Master Styles --- */

body {
    font-family: 'Times New Roman', Times, serif; 
    letter-spacing: 0.03em;
    -webkit-tap-highlight-color: transparent;
}

/* 1. Header & Layering Fixes */
.logo-spacing { margin-top: 20px !important; }

.chopsticks-top { 
    position: relative; 
    z-index: 60 !important; /* Above Navigation (40) */
    pointer-events: none; 
}

/* 2. Navigation & Active Tab */
/* Navigation & Active State */
.tab-btn {
    @apply px-2 py-3 text-xs font-bold uppercase tracking-[0.3em] text-stone-400 transition-all duration-300 relative font-sans;
    border-bottom: 2px solid transparent;
    
    /* These two lines fix the breaking text on mobile! */
    white-space: nowrap !important; 
    flex-shrink: 0 !important; 
}

.active-tab {
    color: #1c1917 !important;
    border-bottom: 2px solid #f8b79f !important;
}

/* 3. Cart Header & UI Elements */
.cart-header-font {
    font-family: 'Great Vibes', cursive !important;
    font-size: 2.8rem !important;
    color: #f8b79f !important;
    line-height: 1;
}

.close-cart-btn {
    color: #1c1917 !important; /* Black X */
    font-size: 1.5rem;
    transition: transform 0.2s;
    background: none;
    border: none;
    cursor: pointer;
}

/* 4. Background Colors (Force Off-White) */
.cart-modal-content, 
.cart-modal-content div, 
#cartItems > div {
    background-color: #f6f7f5 !important;
}

/* 5. Premium Radio Toggles (Selection Chips) */
.radio-hidden { 
    position: absolute; 
    opacity: 0; 
    width: 0; 
    height: 0; 
}

.delivery-chip {
    display: block;
    padding: 1rem;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    text-align: center;
    font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a8a29e;
    transition: all 0.3s ease;
    cursor: pointer;
}

input[type="radio"]:checked + .delivery-chip {
    border-color: #f8b79f !important;
    color: #1c1917 !important;
    box-shadow: 0 4px 12px rgba(248, 183, 159, 0.25);
}

/* 6. Animations & Utilities */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.flying-sushi {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    object-fit: contain;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.3));
}
/* Nur für Mobile Devices (Smartphones) */
@media (max-width: 768px) {
    .chopsticks-top {
        margin-bottom: -50px;
    }
}

@keyframes pop { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.animate-pop { animation: pop 0.4s forwards; }

#emptyBubble { animation: bubbleFloat 3s infinite; }
@keyframes bubbleFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }

.plate-pop { animation: plateBounce 0.5s; }
@keyframes plateBounce { 0% { transform: scale(1); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }