/**
 * Product Feature Image and Gallery Styles
 *
 * Custom styles for the adt_product_feature_image and adt_product_gallery shortcodes
 */

/* Product Feature Image */
.adt-product-feature-image {
    display: block;
    position: relative;
    overflow: hidden;
}

.adt-product-feature-image a {
    display: block;
    cursor: pointer;
}

.adt-product-feature-image img.adt-feature-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.adt-product-feature-image a:hover img.adt-feature-image {
    transform: scale(1.05);
}

/* Product Gallery */
.adt-product-gallery {
    width: 100%;
}

.adt-product-gallery .adt-gallery-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #d9d7c5;
}

.adt-product-gallery .adt-gallery-item a {
    display: block;
    cursor: pointer;
}

.adt-product-gallery img.adt-gallery-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.adt-product-gallery .adt-gallery-item a:hover img.adt-gallery-image {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .adt-product-gallery .adt-gallery-item {
        margin-bottom: 15px;
    }
}
