@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
    
    * {
        font-family: 'Inter', sans-serif;
    }
    
    html {
      scroll-behavior: smooth;
    }
    .hero-gradient {
        background: linear-gradient(135deg, #851f33 0%, #6b1528 50%, #4a0f1c 100%);
    }
    
    .wine-primary {
        color: #851f33;
    }
    
    .wine-bg {
        background-color: #851f33;
    }
    
    .wine-bg:hover {
        background-color: #6b1528;
    }
    
    .glass-effect {
        backdrop-filter: blur(20px);
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .feature-card {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px -12px rgba(133, 31, 51, 0.25);
        background: rgba(255, 255, 255, 1);
    }
    
    .product-card {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }
    
    .carousel-container {
        position: relative;
        overflow: hidden;
        height: 600px;
    }
    
    .carousel-slide {
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .carousel-slide.active {
        opacity: 1;
        transform: translateX(0);
        position: relative;
    }
    
    .carousel-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }
    
    .carousel-slide .slide-content {
        position: relative;
        z-index: 2;
    }
    
    .carousel-arrow {
        
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.95);
        border: none;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 50;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(10px);
    }
    
    .carousel-arrow:hover {
        background: white;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    }
    
    .carousel-arrow.prev {
        left: 30px;
    }
    
    .carousel-arrow.next {
        right: 30px;
    }
    
    .carousel-arrow i {
        color: #851f33;
        font-size: 1.5rem;
        font-weight: bold;
    }
    
    .line-clamp-2 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .scroll-container {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
    }
    
    .scroll-container::-webkit-scrollbar {
        height: 8px;
    }
    
    .scroll-container::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 4px;
    }
    
    .scroll-container::-webkit-scrollbar-thumb {
        background: #851f33;
        border-radius: 4px;
    }
    
    .scroll-container::-webkit-scrollbar-thumb:hover {
        background: #6b1528;
    }

    @media (max-width: 768px) {
        .carousel-container {
            height: 500px;
        }
        
        .carousel-arrow {
            width: 45px;
            height: 45px;
        }
        
        .carousel-arrow.prev {
            left: 15px;
        }
        
        .carousel-arrow.next {
            right: 15px;
        }
        
        .carousel-arrow i {
            font-size: 1.2rem;
        }
    }