        :root {
            --wine: #5b2c2c;
            --deep-wine: #2e1b1b;
            --gold: #cba35c;
            --cream: #fdf8f5;
        }

        body {
            background: var(--cream);
            color: var(--deep-wine);
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        header.site-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
            z-index: 999;
            transition: all 0.3s ease-in-out;
        }

        .navbar-nav .nav-link {
            color: var(--deep-wine) !important;
            font-weight: 500;
            transition: color .3s, border-color .3s;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--gold) !important;
            border-bottom: 2px solid var(--gold);
        }

        /* ---------- HERO ---------- */
        .hero-slide .intro-section {
            position: relative;
            height: 92vh;
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        .hero-slide .intro-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(46, 27, 27, 0.2), rgba(0, 0, 0, 0.6));
        }

        .intro-section h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.8rem;
            color: #fff;
            text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
        }

        .intro-section .sub-title {
            color: var(--gold);
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .btn-hero {
            border: 2px solid var(--gold);
            color: #fff;
            background: transparent;
            border-radius: 30px;
            padding: 10px 32px;
            margin-top: 20px;
            font-weight: 600;
            transition: all .3s ease;
        }

        .btn-hero:hover {
            background: var(--gold);
            color: var(--deep-wine);
        }

        /* ---------- SECTION TITLE ---------- */
        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--wine);
            margin-bottom: .75rem;
        }

        .section-title p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #5a463d;
            max-width: 640px;
            margin: 0 auto .6rem;
        }

        .section-title a {
            color: var(--gold);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color .3s, border-bottom .3s;
        }

        .section-title a:hover {
            color: #8f6b3f;
            border-bottom: 1px solid #8f6b3f;
            text-decoration: none;
        }

        /* ---------- PRODUCTS ---------- */
        .wine_v_1 {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            transition: transform .3s, box-shadow .3s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        .wine_v_1:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .wine_v_1 img {
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
            transition: transform .5s ease;
        }

        .wine_v_1:hover img {
            transform: scale(1.04);
        }

        .wine_v_1 .price {
            color: var(--gold);
            font-weight: 600;
            font-size: 1.2rem;
        }

        .btn.add-to-cart-btn {
            background-color: var(--gold);
            color: #fff;
            border: none;
            border-radius: 25px;
            padding: 8px 20px;
            font-weight: 600;
            transition: all .3s;
        }

        .btn.add-to-cart-btn:hover {
            background-color: #8f6b3f;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
        }

        /* ---------- FOOTER ---------- */
        footer.footer {
            background: linear-gradient(160deg, var(--deep-wine) 0%, #4b2525 100%);
            color: #f0e6da;
            padding-top: 60px;
            padding-bottom: 40px;
            position: relative;
        }

        footer .footer-heading {
            font-family: 'Playfair Display', serif;
            color: #f4e7ce;
            font-size: 1.25rem;
            font-weight: 600;
        }

        footer .footer-heading::after {
            content: '';
            display: block;
            width: 60px;
            height: 2px;
            background-color: var(--gold);
            margin-top: 6px;
            border-radius: 2px;
        }

        footer a {
            color: #e8dfd3;
            transition: color .3s;
        }

        footer a:hover {
            color: var(--gold);
            text-decoration: none;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            margin-right: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            color: #f0e6da;
            transition: all .3s;
        }

        .social-icon:hover {
            background: var(--gold);
            color: var(--deep-wine);
            transform: translateY(-3px);
        }

        @media (max-width:768px) {
            .intro-section h1 {
                font-size: 2.6rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            footer {
                text-align: center;
            }
        }