        /* =============================================
           PRODUCT GALLERY – Thumbnails Left, Magnifier
        ============================================= */
        .gallery-wrapper {
            display: flex;
            gap: 20px;
            align-items: stretch;
            position: relative;
            overflow: visible;
        }
        .thumbnails-vertical {
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 0 0 85px;
            max-height: 100%;
            overflow-y: auto;
            padding-right: 2px;
        }
        .thumbnails-vertical::-webkit-scrollbar {
            width: 4px;
        }
        .thumbnails-vertical::-webkit-scrollbar-track {
            background: #f0ebe5;
            border-radius: 4px;
        }
        .thumbnails-vertical::-webkit-scrollbar-thumb {
            background: #cbb394;
            border-radius: 4px;
        }
        .thumbnails-vertical img {
            width: 85px;
            height: 106px;
            object-fit: cover;
            object-position: top center;
            border-radius: calc(var(--br) * 1.2);
            cursor: pointer;
            border: 2px solid transparent;
            transition: 0.3s;
            background: #f9f6f1;
            opacity: 0.6;
            flex-shrink: 0;
        }
        .thumbnails-vertical img:hover { opacity: 1; }
        .thumbnails-vertical img.active {
            border-color: #cbb394;
            opacity: 1;
            box-shadow: 0 4px 15px rgba(203, 179, 148, 0.2);
        }

        .main-image-wrap {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: calc(var(--br) * 1.5);
            background: #f9f6f1;
            cursor: none;
            min-height: 0;
        }
        .main-image-wrap img {
            width: 100%;
            height: 100%;
            display: block;
            aspect-ratio: 4/5;
            object-fit: cover;
            object-position: top center;
        }
        /* Magnifier Lens – slightly bigger */
        .lens {
            position: absolute;
            border: 2px solid #cbb394;
            width: 120px;
            height: 120px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            pointer-events: none;
            display: none;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            backdrop-filter: blur(2px);
            z-index: 10;
        }
        /* Zoom Result – bigger, square, outside main image */
        .zoom-result {
            display: none;
            position: absolute;
            left: calc(100% + 20px);
            top: 0;
            width: 300px;
            height: 300px;
            border-radius: calc(var(--br) * 1.5);
            border: 2px solid #cbb394;
            background: #fff;
            background-repeat: no-repeat;
            background-size: 800% 800%;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            z-index: 20;
            pointer-events: none;
        }
        .main-image-wrap:hover .lens,
        .main-image-wrap:hover .zoom-result {
            display: block;
        }
        @media (max-width: 768px) {
            .gallery-wrapper {
                flex-direction: column-reverse;
                align-items: stretch;
                overflow: hidden;
            }
            .thumbnails-vertical {
                flex-direction: row;
                flex-wrap: nowrap;
                overflow-x: auto;
                overflow-y: visible;
                flex: none;
                gap: 10px;
                padding-bottom: 4px;
                max-height: none;
                width: 100%;
            }
            .thumbnails-vertical img {
                width: 65px;
                height: 81px;
                flex-shrink: 0;
            }
            .zoom-result { display: none !important; }
            .lens { display: none !important; }
            .main-image-wrap { cursor: default; }
        }

        /* =============================================
           PRODUCT INFO – সাথে মোবাইল টেক্সট সাইজ
        ============================================= */
        .product-info {
            padding-left: 2rem;
        }
        @media (max-width: 992px) {
            .product-info { padding-left: 0; margin-top: 2rem; }
        }
        .product-info .product-brand {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #cbb394;
            font-weight: 600;
        }
        .product-info h1 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1c1c1c;
            margin: 0.4rem 0 0.6rem;
            font-family: 'Playfair Display', serif;
        }
        .product-info .rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 0.8rem;
        }
        .product-info .rating .stars { color: #f5a623; font-size: 0.9rem; }
        .product-info .rating .review-count { font-size: 0.8rem; color: #9b9b9b; }
        .product-info .price-box {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 1rem;
        }
        .product-info .price-box .current {
            font-size: 2rem;
            font-weight: 700;
            color: #cbb394;
            font-family: 'Playfair Display', serif;
        }
        .product-info .price-box .old {
            font-size: 1.2rem;
            color: #b5a89c;
            text-decoration: line-through;
        }
        .product-info .price-box .badge-save {
            background: #ff6b81;
            color: #fff;
            font-size: 0.7rem;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            font-weight: 600;
        }
        .product-info .short-desc {
            color: #6f7686;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #eee8e2;
            padding-bottom: 1.2rem;
        }

        /* Colour & Size */
        .product-info .option-group {
            margin-bottom: 1.2rem;
        }
        .product-info .option-group label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: #2c2c2c;
            margin-bottom: 0.4rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .product-info .option-group .color-options {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .product-info .option-group .color-options .color-swatch {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid #eee8e2;
            cursor: pointer;
            transition: 0.3s;
            position: relative;
        }
        .product-info .option-group .color-options .color-swatch:hover { transform: scale(1.1); }
        .product-info .option-group .color-options .color-swatch.active {
            border-color: #cbb394;
            box-shadow: 0 0 0 2px #fff, 0 0 0 4px #cbb394;
        }
        .product-info .option-group .color-options .color-swatch .check {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
            font-size: 0.7rem;
            opacity: 0;
            transition: 0.3s;
        }
        .product-info .option-group .color-options .color-swatch.active .check { opacity: 1; }

        .product-info .option-group .size-options {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }
        .product-info .option-group .size-options .size-btn {
            padding: 0.4rem 1.2rem;
            border: 1px solid #ddd2c6;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 500;
            background: transparent;
            color: #2c2c2c;
            cursor: pointer;
            transition: 0.3s;
        }
        .product-info .option-group .size-options .size-btn:hover {
            border-color: #cbb394;
            background: rgba(203, 179, 148, 0.05);
        }
        .product-info .option-group .size-options .size-btn.active {
            border-color: #cbb394;
            background: #cbb394;
            color: #fff;
        }
        .product-info .option-group .size-options .size-btn.disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        .btn-size-guide {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #f3ecdf;
            border: 1px solid #e3d3b5;
            color: #7a5c3e;
            font-size: 0.75rem;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            padding: 0.4rem 1rem;
            margin-top: 0.6rem;
            transition: 0.3s;
            letter-spacing: 0.3px;
        }
        .btn-size-guide:hover {
            background: #cbb394;
            border-color: #cbb394;
            color: #fff;
        }

        .stock-status-line {
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 0.6rem;
            margin-bottom: 0.5rem;
        }
        .stock-status-line i { margin-right: 4px; }

        /* Quantity & Add to Cart */
        .product-info .qty-add {
            display: flex;
            align-items: center;
            gap: 16px;
            margin: 1.5rem 0 1rem;
            flex-wrap: wrap;
        }
        .product-info .qty-add .qty-box {
            display: flex;
            align-items: center;
            border: 1px solid #ddd2c6;
            border-radius: 40px;
            overflow: hidden;
        }
        .product-info .qty-add .qty-box button {
            border: none;
            background: transparent;
            padding: 0.5rem 1rem;
            font-size: 1.1rem;
            font-weight: 300;
            color: #2c2c2c;
            transition: 0.2s;
            cursor: pointer;
        }
        .product-info .qty-add .qty-box button:hover { background: rgba(0,0,0,0.02); }
        .product-info .qty-add .qty-box input {
            width: 50px;
            text-align: center;
            border: none;
            font-size: 1rem;
            font-weight: 500;
            padding: 0.5rem 0;
            background: transparent;
            outline: none;
        }
        .product-info .qty-add .btn-add-cart {
            background: linear-gradient(135deg, #000000, #1a1a1a);
            border: none;
            border-radius: 40px;
            padding: 0.7rem 2.4rem;
            font-weight: 600;
            font-size: 0.85rem;
            color: #fff;
            transition: 0.3s;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            flex: 1;
            white-space: nowrap;
        }
        .product-info .qty-add .btn-add-cart:hover {
            background: linear-gradient(135deg, #cbb394, #6a42ff);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(106, 66, 255, 0.25);
            color: #fff;
        }
        .product-info .qty-add .btn-wishlist {
            border: 1px solid #ddd2c6;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: #9b9b9b;
            font-size: 1.2rem;
            transition: 0.3s;
            cursor: pointer;
        }
        .product-info .qty-add .btn-wishlist:hover {
            border-color: #ff6b81;
            color: #ff6b81;
            transform: scale(1.05);
        }

        /* Product Meta */
        .product-info .product-meta {
            margin-top: 1.2rem;
            padding-top: 1rem;
            border-top: 1px solid #eee8e2;
        }
        .product-info .product-meta .meta-item {
            display: flex;
            gap: 8px;
            font-size: 0.8rem;
            color: #6f7686;
            padding: 0.2rem 0;
        }
        .product-info .product-meta .meta-item strong {
            color: #2c2c2c;
            font-weight: 600;
            min-width: 80px;
        }
        .product-info .product-meta .meta-item span { color: #6f7686; }

        /* Share */
        .product-info .share-section {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 1rem;
            padding-top: 0.8rem;
            border-top: 1px solid #eee8e2;
        }
        .product-info .share-section .share-label {
            font-size: 0.75rem;
            color: #9b9b9b;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .product-info .share-section a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(0,0,0,0.03);
            color: #6f7686;
            font-size: 0.9rem;
            transition: 0.3s;
            text-decoration: none;
        }
        .product-info .share-section a:hover {
            background: #cbb394;
            color: #fff;
            transform: translateY(-2px);
        }

        /* মোবাইলে টেক্সট সাইজ ও বাটন ঠিক করা */
        @media (max-width: 576px) {
            .product-info h1 { font-size: 1.8rem; }
            .product-info .price-box .current { font-size: 1.6rem; }
            .product-info .short-desc { font-size: 1rem; }
            .product-info .qty-add .btn-add-cart {
                font-size: 0.9rem;
                padding: 0.6rem 1.2rem;
                flex: 0 0 auto;
                white-space: nowrap;
            }
            .product-info .qty-add .qty-box input { font-size: 1rem; }
            .product-info .option-group .size-options .size-btn { font-size: 0.9rem; padding: 0.4rem 1rem; }
            .product-info .product-meta .meta-item { font-size: 0.9rem; }
            .product-info .share-section .share-label { font-size: 0.85rem; }
            .product-info .qty-add { gap: 10px; }
        }

        /* =============================================
           DESCRIPTION – Accordion
        ============================================= */
        .description-section {
            margin-top: 3rem;
            border-top: 1px solid #eee8e2;
            padding-top: 2rem;
        }
        .description-toggle {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 600;
            color: #1c1c1c;
            font-family: 'Playfair Display', serif;
            transition: 0.3s;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            padding: 0.5rem 0;
        }
        .description-toggle:hover { color: #cbb394; }
        .description-toggle i {
            font-size: 1.2rem;
            transition: 0.4s;
            color: #cbb394;
        }
        .description-toggle i.rotated { transform: rotate(180deg); }
        .description-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s;
            padding: 0 1rem;
            color: #2c2c2c;
            line-height: 1.8;
            font-size: 0.95rem;
        }
        .description-content.open {
            max-height: 1500px;
            padding: 1.5rem 1rem 0.5rem;
        }
        .description-content h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: #1c1c1c;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        .description-content h4:first-of-type { margin-top: 0; }
        .description-content ul {
            padding-left: 1.2rem;
            list-style: none;
        }
        .description-content ul li::before {
            content: "✦ ";
            color: #cbb394;
        }
        .description-content .care-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
            background: #f8f5f2;
            padding: 1rem;
            border-radius: calc(var(--br) * 1.5);
            margin-top: 0.5rem;
        }
        .description-content .care-grid span {
            font-size: 0.9rem;
            color: #4a4a4a;
        }
        .description-content .care-grid span i {
            color: #cbb394;
            margin-right: 6px;
        }

        /* =============================================
           MORE FROM THIS CATEGORY
        ============================================= */
        .more-section {
            padding: 60px 0 40px;
            background: #ffffff;
        }
        .more-section .section-heading {
            font-size: 2rem;
            font-weight: 700;
            color: #1c1c1c;
            font-family: 'Playfair Display', serif;
        }
        .more-section .section-sub {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #9b7b5e;
        }
        .more-card {
            background: #ffffff;
            border-radius: calc(var(--br) * 1.5);
            overflow: hidden;
            border: 1px solid #f0ebe5;
            transition: 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .more-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 32px rgba(0,0,0,0.06);
            border-color: #ddd2c6;
        }
        .more-card .product-img-wrapper {
            aspect-ratio: 4/5;
            background: #f9f6f1;
            overflow: hidden;
        }
        .more-card .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transition: 0.5s;
        }
        .more-card:hover .product-img { transform: scale(1.04); }
        .more-card .p-3 {
            padding: 1rem 0.8rem !important;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .more-card .product-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #1c1c1c;
            margin-bottom: 2px;
        }
        .more-card .product-title a {
            color: #1c1c1c;
            text-decoration: none;
        }
        .more-card .product-title a:hover { color: #cbb394; }
        .more-card .product-price {
            font-size: 0.95rem;
            color: #cbb394;
            font-weight: 500;
        }
        .more-card .product-price .old {
            color: #b5a89c;
            font-size: 0.8rem;
            text-decoration: line-through;
            margin-right: 6px;
        }

        /* =============================================
           SIZE GUIDE MODAL – Gorgeous
        ============================================= */
        .size-guide-modal .modal-content {
            border: none;
            border-radius: calc(var(--br) * 2.5);
            background: linear-gradient(145deg, #1a1a24, #0f0f16);
            color: #e0ddd8;
            box-shadow: 0 40px 80px rgba(0,0,0,0.7);
            border: 1px solid rgba(255,255,255,0.04);
        }
        .size-guide-modal .modal-header {
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 1.5rem 2rem;
        }
        .size-guide-modal .modal-header .modal-title {
            font-family: 'Playfair Display', serif;
            color: #ffffff;
            font-size: 1.8rem;
            font-weight: 600;
            letter-spacing: 1px;
        }
        .size-guide-modal .modal-header .modal-title i {
            color: #cbb394;
            margin-right: 12px;
        }
        .size-guide-modal .modal-header .btn-close {
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            padding: 0.6rem;
            opacity: 0.6;
            transition: 0.3s;
        }
        .size-guide-modal .modal-header .btn-close:hover {
            opacity: 1;
            transform: rotate(90deg);
            background: rgba(255,255,255,0.1);
        }
        .size-guide-modal .modal-body {
            padding: 2rem;
        }
        .size-guide-modal .modal-body p.lead {
            color: rgba(255,255,255,0.4);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
        }
        .size-guide-modal .table-size {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 6px;
        }
        .size-guide-modal .table-size thead th {
            color: #cbb394;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .size-guide-modal .table-size tbody td {
            padding: 0.8rem 1rem;
            font-size: 0.9rem;
            background: rgba(255,255,255,0.02);
            border-radius: calc(var(--br) * 1.2);
            color: rgba(255,255,255,0.7);
            text-align: center;
            transition: 0.3s;
        }
        .size-guide-modal .table-size tbody tr:hover td {
            background: rgba(255,255,255,0.06);
            color: #ffffff;
        }
        .size-guide-modal .table-size tbody td:first-child {
            font-weight: 600;
            color: #cbb394;
        }
        .size-guide-modal .modal-footer {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 1.2rem 2rem;
            justify-content: flex-start;
        }
        .size-guide-modal .modal-footer small {
            color: rgba(255,255,255,0.2);
            font-size: 0.7rem;
            letter-spacing: 0.5px;
        }
        .size-guide-modal .modal-footer small i {
            color: #cbb394;
            margin-right: 6px;
        }

        /* =============================================
