@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital@1&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #010211;
    color: white;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #010211;
}

::-webkit-scrollbar-thumb {
    background: #fe842b;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff9f53;
}



/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Mobile menu transition */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-menu.open {
    max-height: 500px;
}

/* Hover effects */
.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
}

/* Backdrop blur fallback */
.backdrop-blur-fallback {
    background-color: rgba(255, 255, 255, 0.1);
}

@supports (backdrop-filter: blur(15px)) {
    .backdrop-blur-fallback {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
}

/* Profile Dropdown */
.dropdown-item {
    color: #B3B3B3 !important;
    padding: 0.5rem 0.5rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: lighter;
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: #333;
}