    /* Base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f9f5f0; /* Light neutral background */
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }
        
        section {
            padding: 60px 0;
        }
        
        h1, h2, h3 {
            font-weight: 300;
            color: #2c2c2c;
        }
        
        /* Header */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .logo-text {
            font-size: 30px;
            font-weight: 300;
            letter-spacing: 3px;
            color: #8a1538; /* Deep wine color */
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin-left: 30px;
        }
        
        nav a {
            text-decoration: none;
            color: #333;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: #8a1538;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1474722883778-792e7990302f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: #8a1538;
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #6a102c;
        }
        
        /* Products Section */
        .products-intro {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        /* --- Product Image Container --- */
        .product-image {
            height: 300px;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden; /* Essential for containing the zoom effect */
            cursor: zoom-in; /* Show a zoom-in cursor to hint at the interaction */
        }
        
        /* --- Product Image Itself --- */
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* Show full image */
            transition: transform 0.3s ease; /* Smooth transition for the zoom */
        }
        
        /* --- Hover Zoom Effect --- */
        .product-card:hover .product-image img {
            transform: scale(1.05); /* Slight zoom on card hover */
        }

        /* --- Hover Zoom Effect (Fallback if JS is disabled) --- */
        .product-image:hover img {
            transform: scale(1.8); /* Strong zoom as a fallback */
        }

        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #8a1538;
        }
        
        .product-info .product-subtitle {
            font-size: 1rem;
            color: #777;
            margin-bottom: 15px;
            font-style: italic;
        }
        
        .product-info p {
            margin-bottom: 15px;
            color: #666;
        }
        
        /* Product Specifications */
        .product-specs {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 20px 0;
        }
        
        .spec-item {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }
        
        .spec-icon {
            width: 24px;
            height: 24px;
            background-color: #f0e6d9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: #8a1538;
        }
        
        /* Tasting Notes */
        .tasting-notes {
            background-color: #f9f5f0;
            padding: 15px;
            border-radius: 6px;
            margin: 20px 0;
        }
        
        .tasting-notes h4 {
            font-size: 1rem;
            margin-bottom: 10px;
            color: #8a1538;
            display: flex;
            align-items: center;
        }
        
        .tasting-notes h4 i {
            margin-right: 8px;
        }
        
        .notes-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        
        .note-item {
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }
        
        .note-item i {
            margin-right: 5px;
            color: #8a1538;
        }
        
        /* Contact Form */
        .contact {
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 2px;
            background-color: #8a1538;
            margin: 15px auto 0;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        
        .form-group textarea {
            min-height: 150px;
        }

        /* Add asterisk to required field labels */
        .form-group label[for]:has(+ input[required])::after,
        .form-group label[for]:has(+ select[required])::after,
        .form-group label[for]:has(+ textarea[required])::after {
            content: " *";
            color: #8a1538;
        }

        /* Style for invalid fields */
        input:invalid, select:invalid, textarea:invalid {
            border-color: #ff3860;
        }

        input:focus:invalid, select:focus:invalid, textarea:focus:invalid {
            box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
        }
        
        /* FAQ Section */
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        
        .faq-question {
            font-size: 1.2rem;
            margin-bottom: 10px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            color: #666;
            display: none;
        }
        
        .faq-answer.active {
            display: block;
        }
        
        /* Footer */
        footer {
            background-color: #2c2c2c;
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-logo {
            margin-bottom: 20px;
            font-size: 1.5rem;
            letter-spacing: 2px;
        }
        
        .footer-links {
            margin-bottom: 20px;
        }
        
        .footer-links a {
            color: #ddd;
            margin: 0 15px;
            text-decoration: none;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            color: #999;
            font-size: 0.9rem;
        }
        
        /* Language Switcher */
        .language-switcher { 
            position: relative; 
            display: flex; 
            align-items: center; 
        }
        
        .language-toggle { 
            background: none; 
            border: none; 
            cursor: pointer; 
            padding: 0; 
            line-height: 0; 
        }
        
        .language-tooltip { 
            position: absolute; 
            top: 110%; 
            right: 0; 
            background: rgba(0,0,0,0.85); 
            color: #fff; 
            font-size: 12px; 
            padding: 6px 8px; 
            border-radius: 4px; 
            white-space: nowrap; 
            display: none; 
            z-index: 1001; 
        }
        
        .language-switcher:hover .language-tooltip { 
            display: block; 
        }
        
        .language-menu { 
            position: absolute; 
            right: 0; 
            top: 120%; 
            background: #fff; 
            border: 1px solid #e5e7eb; 
            border-radius: 8px; 
            box-shadow: 0 10px 20px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.06); 
            list-style: none; 
            margin: 0; 
            padding: 6px 0; 
            min-width: 180px; 
            display: none; 
            z-index: 1000; 
        }
        
        .language-menu.open { 
            display: block; 
        }
        
        .language-menu li { 
            margin: 0; 
        }
        
        .language-menu a { 
            display: flex; 
            align-items: center; 
            gap: 8px; 
            padding: 8px 12px; 
            text-decoration: none; 
            color: inherit; 
        }
        
        .language-menu a:hover { 
            background: #f3f4f6; 
        }
        
        .language-menu img { 
            display: inline-block; 
            vertical-align: middle; 
        }
        
        .language-menu .current {
            background-color: #f8f9fa;
            font-weight: 500;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .product-specs, .notes-grid {
                grid-template-columns: 1fr;
            }
            
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
                justify-content: center;
            }
            
            nav li {
                margin: 0 10px;
            }
            
            .language-menu {
                right: -50px;
                min-width: 160px;
            }
        }