/* ArtWine Product Gallery Base Styles */
.aw-product-gallery {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.aw-gallery-main {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    background: transparent !important;
}

.aw-gallery-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
    border-radius: inherit; /* Inherit from container */
}

.aw-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 2px 15px 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.aw-gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.aw-gallery-thumb {
    flex: 0 0 72px;
    height: 72px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    padding: 0;
    background: transparent;
}

.aw-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit; /* Inherit from container */
}

.aw-gallery-thumb.active {
    border-color: #00a5b5;
    box-shadow: 0 4px 12px rgba(0, 165, 181, 0.2);
}

.aw-gallery-thumb:hover:not(.active) {
    opacity: 0.8;
    transform: translateY(-2px);
}
