/* ASE Product Gallery */
.ase-product-gallery {
    margin-bottom: 20px;
}

.ase-gallery-main {
    width: 100%;
    margin-bottom: 12px;
    line-height: 0;
    background: #f7f8f9;
    border: 1px solid #eee;
    text-align: center;
    box-sizing: border-box;
}

.ase-gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.ase-gallery-thumbnails {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}

.ase-gallery-thumb {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    padding: 0;
    margin: 0;
    border: 2px solid #ddd;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.15s ease;
}

.ase-gallery-thumb:hover {
    border-color: #999;
}

.ase-gallery-thumb.active {
    border-color: #1e73be;
}

.ase-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

/* Desktop: slightly larger thumbnails */
@media (min-width: 769px) {
    .ase-gallery-thumb {
        flex: 0 0 100px;
        width: 100px;
        height: 100px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .ase-gallery-main {
        margin-bottom: 10px;
    }

    .ase-gallery-thumbnails {
        gap: 6px;
    }

    .ase-gallery-thumb {
        flex: 0 0 64px;
        width: 64px;
        height: 64px;
    }
}
