/* Main gallery: show full product image without cropping (Amazon images are typically square) */
.product-gallery-main {
    aspect-ratio: 1 / 1;
}
.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Story section: follow each image's aspect ratio (Amazon photos are square/portrait) */
.product-story-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Active Variant Pill (product detail page only) */
.variant-option-btn.active {
    border-color: #556052;
    background-color: #556052;
    color: #FFFFFF;
}

.variant-radio:focus-visible + .variant-option-btn {
    outline: 2px solid #556052;
    outline-offset: 2px;
}
