.gallery-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-grid .gallery-item.gallery-cell {
    width: 23.5%;
    margin: 0 0.5% 1% 0.5%;
    float: none;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.gallery-canvas {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.gallery-canvas canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.gallery-label {
    text-align: center;
    font-size: 13px;
    color: #555;
    padding: 8px 5px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

#products-grid .gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-empty {
    width: 100%;
    text-align: center;
    padding: 60px 20px;
    list-style: none;
}

.gallery-empty p {
    font-size: 18px;
    color: #999;
}

/* Tablet: 2 per row */
@media (max-width: 979px) and (min-width: 768px) {
    .gallery-grid .gallery-item.gallery-cell {
        width: 48%;
        margin: 0 1% 1.5% 1%;
    }
}

/* Mobile: 1 per row centered */
@media (max-width: 767px) {
    .gallery-grid .gallery-item.gallery-cell {
        width: 280px;
        margin: 0 auto 15px auto;
    }
}
