/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #E5C1B0;
    border-radius: 3px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Fade in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll down arrow animation */
.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Product card hover effect */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Hero background overlay */
.hero-overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(229, 193, 176, 0.1) 100%);
}

/* Language selection modal */
.language-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.language-modal.hidden {
    display: none;
}

.language-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    margin: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.language-option {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    margin: 0.5rem 0;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    color: #111827;
    font-weight: 500;
    transition: all 0.3s ease;
}

.language-option:hover {
    background: #E5C1B0;
    border-color: #E5C1B0;
    transform: translateY(-2px);
}

/* Logo styling */
.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #111827;
}

.logo-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #111827;
    margin-top: 0.5rem;
}

/* Mobile menu styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border-b border-gray-100;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 40;
}

.mobile-menu.open {
    transform: translateY(0);
}

/* Language switcher */
.lang-switcher {
    position: relative;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: #111827;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.lang-dropdown a:hover {
    background-color: #f9fafb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-main {
        font-size: 2rem;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
    }
    
    .language-card {
        padding: 2rem;
        margin: 1rem;
    }
}
