    /* ---------- Gallery & Zoom ---------- */
    .product-gallery {
        text-align: center;
    }

    .main-image-container {
        position: relative;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        padding: 10px;
        cursor: crosshair;
    }

    #mainImg {
        width: 100%;
        max-height: 520px;
        object-fit: contain;
        background: #fff;
    }

    .zoom-result {
        position: absolute;
        top: 0;
        left: calc(100% + 20px);
        width: 700px;
        height: 700px;
        border: 1px solid #eee;
        background-repeat: no-repeat;
        background-size: 200% 200%;
        display: none;
        z-index: 10;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    .thumbs {
        gap: 8px;
        flex-wrap: wrap;
    }

    .product-gallery .thumb {
        width: 70px !important;
        height: 70px !important;
        object-fit: cover;
        cursor: pointer;
        border-radius: 6px;
        transition: transform .2s ease, box-shadow .2s ease;
    }

    .product-gallery .thumb:hover {
        transform: scale(1.06);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    }

    /* remove conflicting class that looked like element styles */
    .thumb-img,
    .thumbs img.thumb-img {
        all: unset;
    }

    /* ---------- Buttons / Variants ---------- */
    .wishlist-btn {
        border: none;
        background: none;
        font-size: 1.8rem;
        margin-left: 10px;
        cursor: pointer;
        transition: transform .2s ease;
    }

    .wishlist-btn:hover {
        transform: scale(1.2);
    }

    .variant-btn {
        border: 1px solid #ddd;
        background: #fff;
        padding: 6px 12px;
        margin: 0 6px 6px 0;
        border-radius: 20px;
        cursor: pointer;
    }

    .variant-btn:hover {
        background: #f8f9fa;
    }

    /* ---------- Tabs ---------- */
    .nav-tabs .nav-link {
        font-weight: 600;
    }

    .tab-content {
        background: #fff;
    }

    /* ---------- Sticky Bottom (mobile) ---------- */
    .sticky-action-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #eff5f2;
        display: flex;
        gap: 8px;
        padding: 10px 12px;
        box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
        z-index: 1000;
    }

    /* ---------- Related Products ---------- */
    /* .section-title {
        font-weight: 700;
    }

    .product-card {
        border: 1px solid #eee;
        border-radius: 14px;
        overflow: hidden;
        background: #fff;
        display: flex;
        flex-direction: column;
        height: 100%;
        transition: transform .15s ease, box-shadow .15s ease;
    }

    .product-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
    }

    .product-card .img-wrap {
        background: #fff;
        aspect-ratio: 1/1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-card img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        padding: 8px;
    }

    .product-card .body {
        padding: 10px 12px;
        text-align: center;
    }

    .product-card .title {
        font-size: .95rem;
        font-weight: 600;
        line-height: 1.25rem;
        height: 2.5rem;
        overflow: hidden;
        margin-bottom: 6px;
    }

    .product-card .price {
        color: #0d6efd;
        font-weight: 700;
    } */

    /* ---------- Rating small helpers ---------- */
    .rating-badge {
        background: #fff3cd;
        border: 1px solid #ffe69c;
        color: #664d03;
        padding: 4px 8px;
        border-radius: 999px;
        font-weight: 700;
    }

    .summary{
        background: #dcdfdc8c;
        padding: 10px;
        border-radius: 8px;
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 1200px) {
        .zoom-result {
            width: 440px;
            height: 440px;
        }
    }

    @media (max-width: 992px) {
        .zoom-result {
            display: none !important;
        }

        #mainImg {
            max-height: 420px;
        }
    }