:root {
    --cookie-gold: #d4a373;
    --chocolate: #3d2b1f;
    --dough: #fdfaf7;
}

body {
    font-family: 'Georgia', serif; 
    letter-spacing: 0.02em;
    background-color: var(--dough) !important;
}

.tab-btn {
    @apply px-4 py-3 text-xs font-bold uppercase tracking-[0.2em] text-stone-400 transition-all duration-300 relative font-sans;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
}

.active-tab {
    color: var(--chocolate) !important;
    border-bottom: 2px solid var(--cookie-gold) !important;
}

.delivery-chip {
    @apply block p-4 bg-white border-2 border-stone-100 rounded-2xl text-center font-sans font-bold text-[10px] uppercase tracking-widest text-stone-400 transition-all;
}

input[type="radio"]:checked + .delivery-chip {
    border-color: var(--cookie-gold) !important;
    color: var(--chocolate) !important;
}

.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;
}

.footer-bg {
    background-image: url('../img/footer.png');
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
}

#cartModal {
    z-index: 9999 !important;
}

#cartModal:not(.hidden) {
    display: flex !important;
}
/* Base style for the chips */
.delivery-chip {
    @apply block p-4 bg-white border-2 border-stone-100 rounded-2xl text-center font-sans font-bold text-[10px] uppercase tracking-widest text-stone-400 transition-all duration-300;
    cursor: pointer;
    padding: 5px;
    border-radius: 50px;
    text-align: center;
}

/* Active State: When the hidden radio button (peer) is checked */
input[type="radio"]:checked + .delivery-chip {
    background-color: var(--chocolate) !important; /* Dark brown background */
    border-color: var(--cookie-gold) !important;   /* Gold border */
    color: var(--cookie-gold) !important;          /* Gold text */
    transform: scale(1.02);
    shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 5px;
    border-radius: 50px;
    text-align: center;
}

/* Hover state for better UX */
.delivery-chip:hover {
    border-color: var(--cookie-gold);
    color: var(--chocolate);
}

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

.cart-header-font {
    font-family: 'Great Vibes', cursive !important;
}

.border-dotted {
    border-style: dotted !important;
}

/* Scrollbar hiding */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }