.product-media-card {
        border-radius: 16px;
        overflow: hidden;
    }

    .product-slider-stage {
        position: relative;
        min-height: 420px;
        max-height: 520px;
        background: #f8fafc;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
    }

    .product-slider-frame {
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-slider-track {
        width: 100%;
        height: 100%;
        display: flex;
        transition: transform .28s ease;
    }

    .product-slide {
        min-width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
    }

    .product-slide img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 10px;
    }

    .product-slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.72);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

    .product-slider-nav:hover {
        background: rgba(15, 23, 42, 0.9);
    }

    .product-slider-nav.prev {
        left: 12px;
    }

    .product-slider-nav.next {
        right: 12px;
    }

    .product-thumbs {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
        gap: 10px;
        margin-top: 14px;
    }

    .product-thumb {
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        overflow: hidden;
        padding: 0;
        background: #fff;
        aspect-ratio: 1 / 1;
    }

    .product-thumb.active {
        border-color: #1a56db;
        box-shadow: 0 0 0 2px rgba(26, 86, 219, 0.18);
    }

    .product-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    @media (max-width: 991px) {
        .product-slider-stage {
            min-height: 320px;
            max-height: 420px;
        }
    }