/* Lale Döner - Premium CSS Style System */

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

:root {
    --color-primary: #8f0300;
    --color-secondary: #914d00;
    --color-tertiary: #454545;
    --color-surface: #fdf9f3;
    --color-on-surface: #1c1c18;
    --color-surface-container: #f1ede7;
    --color-surface-container-low: #f7f3ed;
    --color-surface-container-lowest: #ffffff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(143, 3, 0, 0.2);
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(143, 3, 0, 0.4);
}

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

/* Custom Textures */
.texture-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
}

.dark .texture-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
}

/* Glassmorphism & Premium Shadows */
.glass-header {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.shadow-premium {
    box-shadow: 0 4px 20px -2px rgba(45, 45, 45, 0.04), 0 2px 8px -1px rgba(45, 45, 45, 0.02);
}

.shadow-premium-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.shadow-premium-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -4px rgba(143, 3, 0, 0.08), 0 4px 12px -2px rgba(143, 3, 0, 0.04);
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-in {
    animation: slideInRight 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Category Tab Active Style */
.category-tab-active {
    background-color: var(--color-primary) !important;
    color: #ffffff !important;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(143, 3, 0, 0.2);
}

/* Banner Gradients */
.banner-gradient {
    background: linear-gradient(135deg, rgba(143, 3, 0, 0.9) 0%, rgba(145, 77, 0, 0.9) 100%);
}

/* Typography Scale (compound label/body/headline utilities) */
.font-label-bold {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.25rem;
    letter-spacing: 0.01em;
}

.font-label-sm {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1rem;
}

.font-body-md {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-headline-md {
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2rem;
}
