        /* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
        :root {
            --brand: #6c185e;
            --brand-dark: #3a0d33;
            --brand-light: #f5edf4;
            --accent: #e8a020;
            --black: #0f0f0f;
            --text: #1a1a2e;
            --muted: #6b7280;
            --border: #e8e8f0;
            --bg: #f4f4f8;
            --white: #ffffff;
            --radius-sm: 10px;
            --radius-md: 18px;
            --radius-lg: 28px;
            --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
            --font-body: 'DM Sans', 'Trebuchet MS', Arial, sans-serif;
            --font-display: "Inter", "Segoe UI", sans-serif;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            background: var(--bg);
            font-family: var(--font-body);
            color: var(--text);
            margin: 0;
            padding: 0;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* ─────────────────────────────────────────
   MAIN PAGE WRAPPER
───────────────────────────────────────── */
        .page-wrapper {
            margin-top: 110px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px 60px;
        }

        /* ─────────────────────────────────────────
   PRODUCT HERO CARD
───────────────────────────────────────── */
        .hero-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 36px 44px;
            box-shadow: var(--shadow-md);
            display: grid;
            grid-template-columns: 44% 1fr;
            gap: 40px;
            align-items: start;
            position: relative;
            overflow: hidden;
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(108, 24, 94, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        /* ── Image Gallery ── */
        #ProductImageGallery {
            position: relative;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            margin-top: 100px;
            /* Adds space above the image to push it down */
        }

        .image-frame {
            background: linear-gradient(45deg, #f0f0f0, #ffffff);
            border-radius: var(--radius-md);
            padding: 20px;
            width: 100%;
            aspect-ratio: 1/1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-sizing: border-box;
        }

        #ProductMainmage {
            width: 100%;
            max-width: 420px;
            height: auto;
            object-fit: contain;
            border-radius: var(--radius-sm);
            transition: transform 0.5s ease;
            margin: 0;
            display: block;
        }

        #ProductMainmage:hover {
            transform: none;
        }

        .gallery-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 42px;
            height: 42px;
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--brand);
            cursor: pointer;
            z-index: 2;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            user-select: none;
        }

        .gallery-arrow:hover {
            background: var(--brand);
            color: white;
            border-color: var(--brand);
            transform: translateY(-50%) scale(1.08);
        }

        .gallery-arrow.left {
            left: -16px;
        }

        .gallery-arrow.right {
            right: -16px;
        }

        /* ── Product Details Panel ── */
        .product-details-panel {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .product-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--brand-light);
            color: var(--brand);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 5px 12px;
            border-radius: 99px;
            margin-bottom: 14px;
            width: fit-content;
        }

        .product-title {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 400;
            color: var(--black);
            line-height: 1.2;
            margin: 0 0 20px 0;
        }

        /* ── Price Block ── */
        .price-block {
            background: var(--brand-light);
            border-radius: var(--radius-md);
            padding: 18px 22px;
            margin-bottom: 24px;
            display: flex;
            align-items: flex-end;
            gap: 14px;
            flex-wrap: wrap;
        }

        .price-current {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--brand);
            line-height: 1;
        }

        .price-mrp {
            font-size: 15px;
            color: var(--muted);
            text-decoration: line-through;
            align-self: center;
        }

        .price-badge {
            background: var(--accent);
            color: white;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 99px;
            align-self: center;
        }

        .price-note {
            font-size: 12px;
            color: var(--muted);
            margin-top: 6px;
            display: block;
        }

        /* ── Specs Table ── */
        .specs-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--muted);
            margin: 0 0 10px;
        }

        .specs-table {
            width: 100%;
            border-collapse: collapse;
            border-radius: var(--radius-sm);
            overflow: hidden;
            font-size: 14px;
            margin-bottom: 24px;
            border: 1px solid var(--border);
        }

        .specs-table tr:first-child td {
            background: var(--brand);
            color: white;
            font-weight: 600;
            font-size: 12px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 10px 14px;
        }

        .specs-table td {
            padding: 10px 14px;
            border-bottom: 1px solid var(--border);
            vertical-align: middle;
            color: var(--text);
        }

        .specs-table tr:nth-child(even) td {
            background: #faf9fc;
        }

        .specs-table tr:last-child td {
            border-bottom: none;
        }

        .specs-table td:first-child {
            font-weight: 600;
            color: #444;
            width: 42%;
        }

        .specs-table tr:hover td {
            background: var(--brand-light);
        }

        /* ── Add to Cart Button ── */
        .btn-cart {
            width: 100%;
            padding: 16px 28px;
            background: var(--black);
            color: white;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.04em;
            border: none;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

        .btn-cart:hover {
            background: linear-gradient(135deg, var(--brand), var(--brand-dark));
        }

        .btn-cart span {
            position: relative;
        }

        .add-to-cart-modal {
            display: none;
            position: absolute;
            bottom: 70px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--brand);
            color: white;
            padding: 10px 22px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-md);
            font-size: 14px;
            font-weight: 500;
            z-index: 100;
            opacity: 0;
            transition: opacity 0.35s ease, bottom 0.35s ease;
            white-space: nowrap;
        }

        .add-to-cart-modal.show {
            display: block;
            opacity: 1;
            bottom: 80px;
        }

        /* ─────────────────────────────────────────
   DIVIDER
───────────────────────────────────────── */
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
            margin: 32px 0;
        }

        /* ─────────────────────────────────────────
   DESCRIPTION + VIDEO CARD
───────────────────────────────────────── */
        .info-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 44px 52px;
            box-shadow: var(--shadow-md);
            margin-top: 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .info-card-title {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 400;
            color: var(--black);
            margin: 0 0 16px;
        }

        .info-card-text {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.8;
            text-align: justify;
        }

        #YTvideo {
            width: 100%;
            aspect-ratio: 16/9;
            height: auto;
            border-radius: var(--radius-md);
            border: none;
            box-shadow: var(--shadow-md);
            display: block;
        }

        /* ─────────────────────────────────────────
   REVIEWS SECTION
───────────────────────────────────────── */
        .reviews-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 36px 52px;
            box-shadow: var(--shadow-md);
            margin-top: 24px;
            overflow: hidden;
        }

        .reviews-logo-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .reviews-card marquee img {
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            margin: 0 6px;
            vertical-align: middle;
        }

        /* ─────────────────────────────────────────
   SECTION HEADING
───────────────────────────────────────── */
        .section-heading {
            display: flex;
            align-items: center;
            gap: 14px;
            font-family: var(--font-display);
            font-size: 1.55rem;
            font-weight: 400;
            color: var(--black);
            margin: 0 0 6px;
        }

        .section-heading::before {
            content: '';
            width: 4px;
            height: 28px;
            background: linear-gradient(to bottom, var(--brand), var(--accent));
            border-radius: 4px;
            flex-shrink: 0;
        }

        .section-sub {
            font-size: 14px;
            color: var(--muted);
            margin: 0 0 24px;
            padding-left: 18px;
        }

        /* ─────────────────────────────────────────
   JARS SECTION
───────────────────────────────────────── */
        .jars-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 40px 52px;
            box-shadow: var(--shadow-md);
            margin-top: 24px;
        }

        .jars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
            gap: 20px;
            margin-top: 8px;
        }

        .accessory-card {
            background: var(--bg);
            border-radius: var(--radius-md);
            padding: 20px 16px 16px;
            border: 1.5px solid var(--border);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .accessory-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--brand), var(--accent));
            transform: scaleX(0);
            transition: var(--transition);
        }

        .accessory-card:hover {
            border-color: var(--brand);
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            background: var(--white);
        }

        .accessory-card:hover::after {
            transform: scaleX(1);
        }

        .accessory-card .jar-img-wrap {
            width: 100%;
            background: white;
            border-radius: var(--radius-sm);
            padding: 16px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .accessory-card img {
            width: 100%;
            height: 110px;
            object-fit: contain;
        }

        .accessory-name {
            font-size: 15px;
            font-weight: 700;
            color: var(--black);
            margin: 0 0 4px;
        }

        .accessory-price {
            font-size: 18px;
            color: var(--brand);
            font-weight: 700;
            margin: 0 0 14px;
        }

        .add-to-cart-btn {
            width: 100%;
            padding: 10px;
            border-radius: var(--radius-sm);
            border: 2px solid var(--brand);
            background: transparent;
            color: var(--brand);
            font-weight: 700;
            font-size: 13px;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 0.03em;
        }

        .add-to-cart-btn:hover {
            background: var(--brand);
            color: white;
        }

        .acc-modal {
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            background: #16a34a;
            color: white;
            padding: 5px 14px;
            border-radius: 99px;
            font-size: 12px;
            font-weight: 600;
            opacity: 0;
            pointer-events: none;
            transition: 0.3s;
            white-space: nowrap;
        }

        .acc-modal.show {
            opacity: 1;
        }

        /* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
        @media (max-width: 1024px) {
            .hero-card {
                gap: 28px;
                padding: 28px 36px;
                grid-template-columns: 44% 1fr;
            }

            .info-card {
                gap: 28px;
                padding: 28px 36px;
            }
        }

        @media (max-width: 1000px) {

            /* --- COPIED NAVBAR RESPONSIVE CONFIG FROM DOMINARXPRO-2200-W-1 --- */
            #Navlink {
                display: none;
            }

            #NavBar img {
                display: inline;
            }

            #NavIcon {
                width: 35px;
            }

            #cart {
                transform: translate(-50%, 10%);
                float: right;
                margin-right: 200px;
                height: 30px;
                margin-left: -100px;
            }

            .mobile-nav-toggle {
                display: block;
                float: right;
                margin-right: 20px;
                margin-top: 5px;
                background: none;
                border: none;
                cursor: pointer;
            }

            .mobile-nav-toggle .hamburger {
                width: 30px;
                height: 3px;
                background-color: black;
                margin: 6px 0;
            }

            /* ----------------------------------------------------------------- */
            .page-wrapper {
                padding: 0 12px 40px;
                margin-top: 90px;
            }

            .hero-card {
                grid-template-columns: 1fr;
                padding: 24px 20px;
                gap: 24px;
            }

            .hero-card::before {
                display: none;
            }

            .image-frame {
                aspect-ratio: 1/1;
                padding: 16px;
                position: static;
            }

            .image-frame img {
                width: 100%;
                max-width: 100%;
                height: auto;
                object-fit: contain;
            }

            .product-title {
                font-size: 1.4rem;
                white-space: nowrap;
            }

            #ProductImageGallery {
                width: 100%;
            }

            .info-card {
                grid-template-columns: 1fr;
                padding: 24px 20px;
                gap: 24px;
            }

            .reviews-card {
                padding: 24px 20px;
            }

            .jars-card {
                padding: 28px 20px;
            }

            .gallery-arrow.left {
                left: 4px;
            }

            .gallery-arrow.right {
                right: 4px;
            }

            #YTvideo {
                aspect-ratio: 16/9;
            }

            .jars-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .jars-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .price-current {
                font-size: 1.8rem;
            }

            .product-title {
                font-size: 1.45rem;
            }
        }

        /* =========================================
   STICKY PRODUCT IMAGE FIX
========================================= */

        .hero-card {
            overflow: visible !important;
        }

        #ProductImageGallery {
            position: sticky;
            top: 120px;

            display: flex;
            align-items: flex-start;
            justify-content: center;

            height: fit-content;

            margin-top: 0 !important;
            align-self: start;
        }

        /* Optional: better sticky behavior on tablet/mobile */
        @media (max-width: 1000px) {
            #ProductImageGallery {
                position: relative;
                top: 0;
            }
        }



        /* Remove hover effect from table heading row */
        .specs-table tr:first-child:hover td {
            background: var(--brand) !important;
            color: white !important;
        }


        .btn-accessories {
            width: 100%;
            padding: 16px 28px;
            background: transparent;
            color: var(--brand);
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.04em;
            border: 2px solid var(--brand);
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: var(--transition);

            display: flex;
            align-items: center;
            justify-content: center;

            margin-top: 12px;
            margin-bottom: 12px;
        }

        .btn-accessories:hover {
            background: var(--brand);
            color: white;
            transform: translateY(-2px);
        }