/* 
    Школа фейсбілдингу Євгенії Баглик 
    Централізований файл стилів
*/

/* --- Спільні стилі --- */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.signature-gradient {
    background: linear-gradient(135deg, #ae0978 0%, #ff6abd 100%);
}

.glass-nav {
    background: rgba(255, 243, 248, 0.8);
    backdrop-filter: blur(20px);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #45223f;
    background-color: #fff3f8;
}

h1, h2, h3, .brand-font {
    font-family: 'Playfair Display', serif;
}

/* --- Елементи каталогу (Bodo Style) --- */
.filter-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ae0978'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
}

.product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomInSimple {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.animate-in {
    animation-duration: 300ms;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: both;
}

.fade-in {
    animation-name: fadeIn;
}

.zoom-in {
    animation-name: zoomInSimple;
}

/* --- Таби (Modern Chips) --- */
.tab-btn {
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    border: none !important;
    color: #764f6e;
    font-family: 'Montserrat', sans-serif;
    text-transform: none !important;
    background: transparent;
}

.tab-btn:hover {
    background: rgba(174, 9, 120, 0.05);
    color: #ae0978;
}

.tab-btn.active {
    background: linear-gradient(135deg, #ae0978 0%, #ff6abd 100%) !important;
    color: white !important;
    box-shadow: 0 10px 20px -5px rgba(174, 9, 120, 0.3) !important;
}

/* --- Utilities --- */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
