 
        /* ---------- CUSTOM VARIABLES ---------- */
        :root {
            --primary: #B3336F;
            --primary-light: #D4558F;
            --primary-dark: #8A2654;
            --primary-glow: rgba(179, 51, 111, 0.25);
            --soft-pink: #FFF3F6;
            --light-blush: #FFECEF;
            --bg-white: #FFFFFF;
            --surface: #FFF7F9;
            --text-primary: #1E1E1E;
            --text-secondary: #777777;
            --border-light: #F2E8EB;
            --rating: #FFC107;
            --success: #3CB371;
            --shadow-soft: 0 8px 24px rgba(179, 51, 111, 0.08);
            --shadow-hover: 0 16px 40px rgba(179, 51, 111, 0.15);
            --radius-btn: 12px;
            --radius-card: 16px;
            --radius-image: 16px;
            --radius-hero: 24px;
            --black: #1a1a1a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Poppins;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--bg-white);
            color: var(--text-primary);
            font-weight: 400;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            letter-spacing: 0.2px;
            padding-bottom: 100px;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        .display-heading {
            font-family: 'poppins', serif;
            font-weight: 700;
            letter-spacing: 0.2px;
        }

        .container-custom {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* ---------- BUY NOW BUTTON (Primary color, attention-grabbing) ---------- */
        .btn-buy-now {
            background: var(--primary);
            color: white;
            border: 2px solid #fff;
            border-radius: var(--radius-btn);
            padding: 16px 35px;
            height: 52px;
            font-weight: 700;
            font-size: 16px;
            box-shadow: 0 4px 24px var(--primary-glow);
            transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }
        .btn-buy-now::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15) 60%, transparent 80%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        .btn-buy-now:hover::before {
            transform: translateX(100%);
        }
        .btn-buy-now:hover {
            background: var(--primary-dark);
            transform: scale(1.01) translateY(-2px);
            box-shadow: 0 8px 40px rgba(206, 81, 139, 0.4);
            color: white;
        }
        .btn-buy-now:active {
            transform: scale(0.97);
        }
        .btn-buy-now i {
            font-size: 20px;
        }
        .btn-buy-now .price-tag {
            background: rgba(255, 255, 255, 0.2);
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 600;
            backdrop-filter: blur(4px);
        }

        /* Secondary button outline */
        .btn-outline-primary-custom {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: var(--radius-btn);
            padding: 12px 26px;
            font-weight: 600;
            font-size: 16px;
            transition: all 300ms ease;
        }
        .btn-outline-primary-custom:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.02);
            box-shadow: 0 4px 20px var(--primary-glow);
        }

        /* ---------- CARDS ---------- */
        .card-luxury {
            background: var(--bg-white);
            border-radius: var(--radius-card);
            border: 1px solid var(--border-light);
            padding: 15px;
            box-shadow: var(--shadow-soft);
            transition: all 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
            height: 100%;
        }
        .card-luxury:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }

      

        /* ---------- SECTIONS ---------- */
        section {
            padding: 80px 0;
        }
        .section-title {
            font-size: 36px;
            margin-bottom: 16px;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 4px;
            margin-top: 8px;
        }
        .section-title.text-center::after {
            margin: 8px auto 0;
        }
        .section-subtitle {
            color: var(--text-secondary);
            font-size: 16px;
            font-weight: 400;
        }

        /* ---------- PRODUCT HERO ---------- */
        .product-hero {
            padding-top: 30px;
            padding-bottom: 40px;
        }
        .product-gallery {
            border-radius: var(--radius-hero);
            overflow: hidden;
            background: var(--surface);
        }
        .product-gallery .swiper-button-next::after,
        .product-gallery .swiper-button-prev::after
        {
            font-size:20px;
            font-weight: 700;
        }


        .shades-slider .swiper-button-next::after,
        .shades-slider .swiper-button-prev::after
        {
            font-size:20px;
            font-weight: 700;
        }

        .product-gallery .swiper-slide img {
            width: 100%;
           
            object-fit: cover;
            border-radius: var(--radius-image);
        }
        .product-thumb {
            margin-top: 12px;
        }
        .product-thumb .swiper-slide {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            overflow: hidden;
            opacity: 0.5;
            transition: opacity 0.3s, border-color 0.3s;
            cursor: pointer;
            border: 3px solid transparent;
        }
        .product-thumb .swiper-slide-thumb-active {
            opacity: 1;
            border-color: var(--primary);
        }
        .product-thumb .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-info .price {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
        }
        .product-info .rating {
            color: var(--rating);
        }

        /* Shades swatches */
        .shade-swatches {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .shade-swatch {
            width: 48px;
            height: 48px;
            border-radius: 999px;
            border: 3px solid white;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: default;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: white;
            font-weight: 700;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        }
        .shade-swatch:hover {
            transform: scale(1.12);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .video-carousel .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 10px;
        }
        .video-carousel .swiper-slide video {
            width: 100%;
            max-width: 320px;
            height:fit-content;
            
            min-height: 400px;
            object-fit: cover;
            border-radius: 20px;
            background: #2a2a2a;
            
            border: 2px solid rgba(255, 255, 255, 0.06);
            transition: transform 0.3s;
        }
        .video-carousel .swiper-slide video:hover {
            transform: scale(1.02);
        }
        .video-carousel .swiper-button-next,
        .video-carousel .swiper-button-prev {
            color: white;
            background: rgba(179, 51, 111, 0.6);
            width: 44px;
            height: 44px;
            border-radius: 999px;
            backdrop-filter: blur(8px);
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .video-carousel .swiper-button-next:hover,
        .video-carousel .swiper-button-prev:hover {
            background: var(--primary);
        }
        .video-carousel .swiper-button-next::after,
        .video-carousel .swiper-button-prev::after {
            font-size: 18px ;
            font-weight: 700;
        }
        .video-carousel .swiper-pagination-bullet {
            background: rgba(255, 255, 255, 0.3);
            opacity: 1;
        }
        .video-carousel .swiper-pagination-bullet-active {
            background: var(--primary);
        }

        /* ---------- BRAND STORY SECTION ---------- */
        .brand-story {
            background: linear-gradient(135deg, var(--soft-pink) 0%, var(--light-blush) 100%);
            position: relative;
            overflow: hidden;
        }
        .brand-story::before {
            content: '✦';
            position: absolute;
            font-size: 300px;
            right: -60px;
            bottom: -100px;
            opacity: 0.05;
            color: var(--primary);
        }
        .brand-story .story-highlight {
            color: var(--primary);
            font-weight: 700;
        }

        /* ---------- FIXED CART ---------- */
        .fixed-cart {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(12px);
            border-top: 2px solid var(--border-light);
            padding: 12px 20px;
            z-index: 1050;
            box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.04);
        }
        .fixed-cart .container-custom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .cart-preview {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }
        .cart-preview img {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            object-fit: cover;
            border: 2px solid var(--primary-light);
        }
        .cart-preview .item-detail {
            font-size: 14px;
            font-weight: 600;
        }
        .cart-preview .item-detail small {
            display: block;
            color: var(--primary);
            font-weight: 500;
            font-size: 13px;
        }
        .qty-control {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--soft-pink);
            padding: 4px 14px;
            border-radius: 40px;
            border: 1px solid var(--border-light);
        }
        .qty-control button {
            background: none;
            border: none;
            font-size: 20px;
            font-weight: 600;
            color: var(--primary);
            padding: 0 4px;
            transition: transform 0.2s;
        }
        .qty-control button:hover {
            transform: scale(1.2);
        }
        .qty-control span {
            font-weight: 700;
            min-width: 24px;
            text-align: center;
            font-size: 18px;
        }

        /* ---------- TESTIMONIAL AVATAR ---------- */
        .testimonial-avatar {
            width: 56px;
            height: 56px;
            border-radius: 999px;
            overflow: hidden;
            
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: white;
            font-weight: 600;
            box-shadow: 0 4px 16px var(--primary-glow);
        }

        /* ---------- SHADE SHOP CARDS ---------- */
        .shade-shop-card {
            text-align: center;
            padding: 20px 16px;
            border-radius: var(--radius-card);
            border: 2px solid var(--border-light);
            background: var(--bg-white);
            transition: all 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .shade-shop-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }
        .shade-shop-card .shade-preview {
            width: 100%;
            height: 140px;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }

        /* ---------- RESPONSIVE ---------- */
        @media (max-width: 992px) {
            .section-title {
                font-size: 28px;
            }
            .container-custom {
                padding: 0 20px;
            }
            section {
                padding: 60px 0;
            }
            .product-gallery .swiper-slide img {
                /* height: 300px; */
            }
            .video-carousel .swiper-slide video {
                /* height: 400px;
                max-width: 260px; */
                min-height: 300px;
                height: fit-content;
            }
        }
        @media (max-width: 576px) {
            .product-gallery .swiper-slide img {
                /* height: 240px; */
            }
            .fixed-cart .container-custom {
                flex-direction: column;
                align-items: stretch;
            }
            .cart-preview {
                /* justify-content: center; */
            }
            .btn-buy-now {
                width: 100%;
                justify-content: center;
                font-size: 15px;
                padding: 14px 20px;
                height: 50px;
            }
            .video-carousel .swiper-slide video {
                /* height: 360px;
                max-width: 200px; */
                width: 100%;
                max-height: 400px;
                height: fit-content;
            }
            .section-title {
                font-size: 26px;
            }
            .brand-story::before {
                font-size: 150px;
                right: -30px;
                bottom: -50px;
            }

        .card-luxury h5{
            font-size: 14px;
        }
        .card-luxury p{
            font-size: 12px;
        }

        header img{
            width: 100px;
        }

        .product-info h1{
            font-size: 22px !important;
        
        }
        
        }
