




/* === ARA Spa - Đồng bộ kích thước ảnh gallery sản phẩm === */

/* Khung ảnh chính trong slider */
.product-gallery-slider .woocommerce-product-gallery__image a {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; /* chữ nhật, thấp hơn vuông 1 chút */
    overflow: hidden;
}

.product-gallery-slider .woocommerce-product-gallery__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Khung ảnh thumbnail */
.product-thumbnails .col a {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.product-thumbnails .col img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}