.refill-card-image {
    width: 100%;
}

.refill-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.refill-card-img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.refill-lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.refill-lightbox.active {
    display: flex;
}

.refill-lightbox__img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.refill-lightbox__close {
    position: absolute;
    top: 16px;
    right: 28px;
    color: #fff;
    font-size: 44px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
}
