@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

/* Custom Scrollbar Hide */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Premium Text Gradient */
.text-premium {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

/* Category Item Styling - Luxurious Squircle */
.cat-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cat-icon-box {
    width: 3.5rem; /* 56px */
    height: 3.5rem;
    border-radius: 1.25rem; /* Soft Squircle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    background: white;
    color: #94a3b8; /* Slate-400 */
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); 
    border: 1px solid #f1f5f9;
}

/* Active State */
.cat-item.active .cat-icon-box {
    background: linear-gradient(135deg, #015196 0%, #003d73 100%); /* Primary Gradient */
    color: white;
    box-shadow: 0 8px 20px rgba(1, 81, 150, 0.25);
    transform: translateY(-2px);
    border-color: transparent;
}
.cat-item.active span {
    color: #015196;
    font-weight: 700;
}

/* Bottom Nav Active State */
.nav-item.active {
    color: #015196; /* Primary */
}

/* Category Circle Styling */
.cat-circle {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-circle div {
    transition: all 0.3s ease;
}

.cat-circle span {
    transition: all 0.3s ease;
}

/* Active Category State */
.cat-circle.active div {
    background: #015196 !important;
    color: white !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(1, 81, 150, 0.25);
}

.cat-circle.active span {
    color: #015196 !important;
    font-weight: 700;
}


/* Product Card Shadow - Softer */
.card-shadow {
    box-shadow: 0 4px 25px rgba(0,0,0,0.03); 
    transition: all 0.2s ease;
}
.card-shadow:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

/* Custom Checkbox/Radio Styling */
.custom-radio:checked + div {
    background-color: #015196;
    color: white;
    border-color: #015196;
    box-shadow: 0 4px 10px rgba(1, 81, 150, 0.2);
}

/* Topping Selector */
.topping-selector:checked + div {
    border-color: #015196;
    background-color: #f0f9ff;
    color: #015196;
}

/* Modal Animation - Slower, smoother */
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.animate-slide-up {
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Fade In */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}
