
        .product-form .swatch .swatchInput:checked+.swatchLbl {
            border: 1px solid #111111;
            box-shadow: none;
        }

        /* FIX: Exclude 'i' tags from the global font override so icons don't break */
        #page-content,
        #page-content *:not(i) {
            font-family: "Poppins", Helvetica, Tahoma, Arial, serif;
        }

        /* --- STRICTLY SCOPED LUXURY DESIGN CSS STARTS HERE --- */
        /* Responsive Image Fixes - HEIGHT ADJUSTED */
        .jp-image-container {
            height: 100%;
        }
        .jp-image-container img {
            width: 100% !important;
            max-width: 100% !important;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
        }
        /* Specifically target the main large image to control height */
        .jp-image-container .zoompro-wrap img {
            height: auto !important;
            max-height: 75vh !important;
            object-fit: contain !important;
            background-color: #faf9f5;
        }
        @media (min-width: 1200px) {
            .jp-image-container .zoompro-wrap img {
                max-height: 700px !important;
            }
        }
        /* Luxury Right Side Wrapper - Flex Layout added for scrolling */
        .jp-luxury-wrapper {
            background: #ffffff;
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(177, 142, 53, 0.15);
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        /* Top Accent Line */
        .jp-luxury-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #B18E35 0%, #e2c882 50%, #B18E35 100%);
        }
        /* EQUAL HEIGHT & INTERNAL SCROLL MAGIC (DESKTOP ONLY) */
        @media (min-width: 992px) {
            .jp-right-col {
                position: relative;
            }
            .jp-luxury-wrapper {
                position: absolute;
                top: 0;
                bottom: 0;
                left: 15px;
                right: 15px;
                height: 100%;
            }
            .jp-scrollable-area {
                flex-grow: 1;
                overflow-y: auto;
                min-height: 0;
                padding-right: 15px;
                margin-right: -5px;
                scroll-behavior: smooth;
            }
        }
        /* MOBILE LAYOUT HANDLING (FIXED RESPONSIVENESS) */
        @media (max-width: 991px) {
            .jp-luxury-wrapper {
                padding: 24px 20px;
                margin-top: 25px;
                border-radius: 14px;
                height: auto;
                display: flex;
                flex-direction: column;
                overflow: hidden;
            }
            .jp-scrollable-area {
                overflow-y: auto;
                max-height: 250px;
                padding-right: 10px;
                margin-right: -5px;
                margin-top: 10px;
                padding-top: 15px;
                border-top: 1px dashed #f0e6ce;
                scroll-behavior: smooth;
            }
        }
        /* Custom Scrollbar */
        .jp-scrollable-area::-webkit-scrollbar {
            width: 5px;
        }
        .jp-scrollable-area::-webkit-scrollbar-track {
            background: #fdfbf7;
            border-radius: 10px;
        }
        .jp-scrollable-area::-webkit-scrollbar-thumb {
            background: #d4b55e;
            border-radius: 10px;
        }
        .jp-scrollable-area::-webkit-scrollbar-thumb:hover {
            background: #B18E35;
        }
        /* Typography & Components */
        .jp-id-badge {
            background: #f8f9fa;
            color: #6c757d;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
            padding: 5px 12px;
            border-radius: 6px;
            display: inline-block;
            margin-bottom: 12px;
            border: 1px solid #e9ecef;
        }
        .jp-product-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.3;
            margin-bottom: 5px;
            text-transform: capitalize;
            letter-spacing: -0.5px;
        }
        @media (max-width: 576px) {
            .jp-product-title {
                font-size: 1.5rem;
            }
        }
        .jp-seo-name {
            color: #888;
            font-weight: 400;
            margin-bottom: 25px;
        }
        /* META ROW: Size and Dates Side-by-Side */
        .jp-meta-row {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 15px;
        }
        .jp-size-tag {
            background: #fff9ed;
            color: #B18E35;
            border: 1px solid #eaddb6;
            padding: 6px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            height: 38px;
        }

        /* UPDATED CODE: Simple Red Wishlist Button Styles */
        .jp-wishlist-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #fff;
            border: 1px solid #e02b27;
            color: #e02b27;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.2s ease-in-out;
        }
        .jp-wishlist-btn:hover,
        .jp-wishlist-btn:focus {
            background: #e02b27;
            color: #fff;
            text-decoration: none;
        }

        /* ADDED CODE: Floating WhatsApp Styles */
        .jp-floating-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
        }
        .jp-floating-whatsapp:hover,
        .jp-floating-whatsapp:focus {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
            color: white;
            text-decoration: none;
        }
        @media (max-width: 767px) {
            .jp-floating-whatsapp {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 28px;
            }
        }
        /* Compact Dates */
        .jp-dates-compact {
            display: flex;
            gap: 10px;
        }
        .jp-date-item {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #fcf9f2;
            padding: 4px 14px;
            border-radius: 30px;
            border: 1px solid #f2ead3;
            height: 38px;
        }
        .jp-date-item i {
            color: #B18E35;
            font-size: 1rem;
        }
        .jp-date-item-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .jp-date-item-text .label {
            font-size: 0.6rem;
            text-transform: uppercase;
            color: #999;
            font-weight: 700;
            line-height: 1;
        }
        .jp-date-item-text .value {
            font-size: 0.8rem;
            font-weight: 700;
            color: #222;
            line-height: 1.2;
        }
        /* Mobile specific adjustments for Meta Row */
        @media (max-width: 767px) {
            .jp-meta-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            .jp-dates-compact {
                width: 100%;
                gap: 10px;
            }
            .jp-date-item {
                flex: 1;
            }
        }
        /* Premium Pricing Box */
        .jp-pricing-box {
            background: linear-gradient(145deg, #fdfbf7 0%, #ffffff 100%);
            border: 1px solid #f2ead3;
            border-left: 4px solid #B18E35;
            border-radius: 12px;
            padding: 22px 25px;
            margin: 25px 0;
            box-shadow: 0 4px 20px rgba(177, 142, 53, 0.05);
        }
        @media (max-width: 576px) {
            .jp-pricing-box {
                padding: 18px 20px;
            }
        }
        .jp-price-line {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 12px;
            margin-bottom: 12px;
            border-bottom: 1px dashed #f0e6ce;
            gap: 15px;
        }
        .jp-price-line:last-child {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
            padding-top: 8px;
        }
        .jp-price-label {
            color: #555;
            font-size: 0.95rem;
            font-weight: 500;
            line-height: 1.3;
        }
        .jp-price-amount {
            color: #222;
            font-size: 1.05rem;
            font-weight: 600;
            white-space: nowrap;
            text-align: right;
            flex-shrink: 0;
        }
        .jp-total-amount {
            font-size: 1.05rem !important;
            color: #B18E35 !important;
            font-weight: 600 !important;
            white-space: nowrap !important;
        }
        .jp-total-label {
            font-size: 1.1rem !important;
            font-weight: 700 !important;
            color: #111 !important;
        }
        /* Description Styling */
        .jp-desc-title {
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #B18E35;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .jp-desc-title::after {
            content: '';
            flex-grow: 1;
            height: 1px;
            background: #B18E35;
        }
        .jp-desc-content {
            font-size: 0.95rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 25px;
            text-align: justify;
        }

        /* Ensure the dynamically injected zoom container doesn't force width */
        .zoomContainer {
            max-width: 100vw !important;
            overflow: hidden !important;
        }


        .a_desc{
            color: #B18E35 !important;
            font-weight: bold !important;
        }