.cursor-zoom { cursor: zoom-in; }
            .thumb-img {
                width: 100%;
                height: 80px;
                object-fit: cover;
                border-radius: 8px;
                border: 2px solid transparent;
                transition: 0.3s;
                cursor: pointer;
                opacity: 0.6;
            }
            .thumb-img:hover, .active-thumb { opacity: 1; border-color: #0d6efd; }

            .btn-gallery-nav {
                background: rgba(255, 255, 255, 0.8);
                border: 1px solid rgba(0, 0, 0, 0.1);
                border-radius: 50%;
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 5;
                transition: 0.3s;
            }
            .btn-gallery-nav:hover { background: #fff; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }

.product-full-description { line-height: 1.8; color: #444; }
.product-full-description img { max-width: 100%; height: auto; border-radius: 12px; }

.product-socials__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.2rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.08);
    color: #1a56db;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.product-socials__link:hover,
.product-socials__link:focus-visible {
    background: rgba(13, 110, 253, 0.14);
    color: #0d6efd;
    transform: translateY(-1px);
}

.product-socials__link--instagram {
    color: #e1306c;
    background: rgba(225, 48, 108, 0.1);
}

.product-socials__link--instagram:hover,
.product-socials__link--instagram:focus-visible {
    color: #e1306c;
    background: rgba(225, 48, 108, 0.16);
}

.product-socials__link--tiktok {
    color: #111827;
    background: rgba(17, 24, 39, 0.08);
}

.product-socials__link--tiktok:hover,
.product-socials__link--tiktok:focus-visible {
    color: #111827;
    background: rgba(17, 24, 39, 0.14);
}

.product-share__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 2rem;
    padding: 0.48rem 0.8rem;
    border-radius: 999px;
    border: 1px solid #dbe4ee;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.product-share__link:hover,
.product-share__link:focus-visible {
    background: #f8fafc;
    border-color: #c7d4e2;
    color: #0f172a;
    transform: translateY(-1px);
}

.product-share__link--facebook i {
    color: #1877f2;
}

.product-share__link--telegram i {
    color: #229ed9;
}

.product-share__link--whatsapp i {
    color: #25d366;
}

.product-share__link--viber i {
    color: #7360f2;
}

.product-price-card {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    width: fit-content;
    min-width: min(100%, 19rem);
    max-width: 100%;
    background: linear-gradient(180deg, #f8f9fb 0%, #f4f6fa 100%);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 1rem;
    padding: 0.95rem 1.2rem 1rem;
    margin-bottom: 1rem;
}

.product-price-card__discount {
    display: inline-flex;
    align-items: center;
    min-height: 1.8rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: rgba(220, 53, 69, 0.1);
    color: #b42318;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.product-price-card__value {
    display: inline-block;
    font-size: clamp(2rem, 4.2vw, 2.45rem);
    line-height: 1;
    letter-spacing: -0.03em;
}

.product-price-card__old {
    font-size: 0.95rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.shop-product-discount-badge {
    font-weight: 700;
    letter-spacing: 0.01em;
}

.variant-label {
    transition: 0.2s;
    min-width: 70px;
                text-align: center;
                cursor: pointer;
            }

            .btn.variant-label--available:hover,
            .btn.variant-label--available:focus-visible,
            .btn-check:focus-visible + .variant-label--available,
            .btn-check:hover + .variant-label--available {
                border-color: #0d6efd !important;
                color: #fff !important;
                background-color: #0d6efd !important;
                box-shadow: 0 0 0 0.18rem rgba(13, 110, 253, 0.18);
            }

            .btn.variant-label--backorder:hover,
            .btn.variant-label--backorder:focus-visible {
                border-color: #fd7e14 !important;
                color: #8a3c00 !important;
                background-color: #ffe7d6 !important;
                box-shadow: 0 0 0 0.18rem rgba(253, 126, 20, 0.16);
            }

            .btn.variant-label--reserved:hover,
            .btn.variant-label--reserved:focus-visible {
                border-color: #d39e00 !important;
                color: #7a5a00 !important;
                background-color: #fff1b8 !important;
                box-shadow: 0 0 0 0.18rem rgba(255, 193, 7, 0.18);
            }

            .btn-check:checked + .variant-label { background-color: #0d6efd; color: #fff; border-color: #0d6efd; }

            .product-review-summary {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.15rem;
            }

            .product-review-stars {
                color: #f4b400;
                letter-spacing: 0.08em;
            }

            .product-review-card,
            .product-review-form-card,
            .product-review-empty {
                background: #fff;
                border: 1px solid rgba(0, 0, 0, 0.08);
                border-radius: 1.5rem;
                box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
            }

            .product-review-card,
            .product-review-empty {
                padding: 1.35rem 1.4rem;
            }

            .product-review-form-card {
                padding: 1.6rem;
                position: sticky;
                top: 110px;
                background:
                    radial-gradient(circle at top right, rgba(13, 110, 253, 0.08), transparent 34%),
                    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
            }

            .product-review-toggle {
                border: 1px solid rgba(15, 23, 42, 0.08);
                border-radius: 1.35rem;
                padding: 1.1rem 1.25rem;
                background: #ffffff;
                box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
                color: #111827;
            }

            .product-review-toggle:hover,
            .product-review-toggle:focus-visible {
                background: #ffffff;
                border-color: rgba(13, 110, 253, 0.2);
                color: #111827;
                box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
            }

            .product-review-toggle__label {
                display: inline-flex;
                align-items: center;
                gap: 0.75rem;
                min-width: 0;
            }

            .product-review-toggle__glyph {
                color: #6b7280;
                font-size: 1rem;
                flex-shrink: 0;
            }

            .product-review-toggle__title {
                font-size: 1.125rem;
                font-weight: 700;
                line-height: 1.35;
                letter-spacing: -0.01em;
                color: #111827;
            }

            .product-review-toggle__icon {
                transition: transform 0.2s ease;
                color: #6b7280;
                font-size: 1rem;
                flex-shrink: 0;
            }

            .product-review-toggle[aria-expanded="true"] .product-review-toggle__icon {
                transform: rotate(180deg);
            }

            .product-review-comment {
                color: #495057;
                line-height: 1.7;
                white-space: pre-line;
            }

            .product-review-empty {
                color: #6c757d;
                line-height: 1.7;
            }

            @media (max-width: 991.98px) {
                .product-review-form-card {
                    position: static;
                }
            }

            @media (max-width: 575.98px) {
                .product-review-toggle {
                    padding: 1rem 1.05rem;
                }

            }
