.home-product-card .product-card__body h3 {
    margin: 10px 0 10px;
    color: var(--ulin-dark);
    font-size: 1.35rem;
    line-height: 1.22;
}

.product-detail__main-image {
    position: relative;
    width: 100%;
    padding: 0;
    cursor: zoom-in;
}

.product-detail__main-image span {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(23, 21, 19, .74);
    color: #fffaf2;
    font-size: .82rem;
    font-weight: 800;
    pointer-events: none;
}

.product-detail__thumbs {
    align-items: stretch;
}

.product-detail__thumb {
    display: block;
    width: 100%;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 14px;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
}

.product-detail__thumb img {
    display: block;
    transition: transform .2s ease, opacity .2s ease;
}

.product-detail__thumb:hover img {
    transform: scale(1.04);
}

.product-detail__thumb.is-active {
    border-color: var(--terrace);
    box-shadow: 0 10px 26px rgba(74, 33, 26, .18);
}

.product-detail__thumb:not(.is-active) img {
    opacity: .72;
}

body.lightbox-open {
    overflow: hidden;
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 44px);
    background: rgba(10, 8, 7, .9);
    cursor: zoom-out;
}

.product-lightbox img {
    max-width: min(1120px, 94vw);
    max-height: 88vh;
    display: block;
    border-radius: 18px;
    object-fit: contain;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .44);
}

.product-lightbox__close {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 1000;
    min-height: 42px;
    padding: 9px 16px;
    border: 1px solid rgba(255, 250, 242, .2);
    border-radius: 999px;
    background: rgba(255, 250, 242, .12);
    color: #fffaf2;
    font-weight: 850;
    cursor: pointer;
}

@media (max-width: 640px) {
    .product-detail__main-image span {
        right: 12px;
        bottom: 12px;
        font-size: .76rem;
    }
}
