@import url('[https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap](https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap)');
        
body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    letter-spacing: 0.025em;
    line-height: 1.7;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
    width: 100%;
}

.selected-item { 
    border-color: #4f46e5 !important; 
    background-color: #f5f3ff !important; 
    box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.2);
}

.selected-item .check-icon { display: flex !important; }

.fade-in { animation: fadeIn 0.4s ease-out forwards; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #4f46e5; border-radius: 10px; }

.loading-screen {
    position: fixed; inset: 0; background: white; z-index: 9999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.5s ease;
    text-align: center; padding: 20px;
}

.img-container {
    aspect-ratio: 1/1; overflow: hidden; border-radius: 1.5rem; background-color: #f8fafc;
}

.tab-btn.active {
    background-color: #4f46e5;
    color: white;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.modal-body {
    max-height: calc(90vh - 180px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.admin-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.promo-badge {
    background: linear-gradient(45deg, #f43f5e, #fb7185);
    color: white;
    font-size: 8px;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 99px;
    text-transform: uppercase;
}
