.zoomable-image-wrap,
.fabric-specs__image {
    position: relative;
    display: inline-block;
}

.zoomable-image-wrap img,
.fabric-specs__image img,
.zoomable {
    display: block;
    max-width: 100%;
}

.zoomable {
    cursor: zoom-in;
}

.zoomable-image-wrap::after,
.fabric-specs__image::after {
    content: '🔍';
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 14px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 2;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lb-img {
    display: block;
    max-width: 100%;
    max-height: 100vh;
    border-radius: 12px;
}

.lb-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    font-size: 26px;
    line-height: 1;
    color: #111;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.24);
}
