.product-gallery {
    max-width: 420px;
}

.pg-main {
    position: relative;
}

.pg-image {
    width: 100%;
    max-width: 420px;
    height: auto;
}

.pg-prev,
.pg-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,0.4);
    color: white;
    font-size: 22px;
    padding: 6px 10px;
    cursor: pointer;
}

.pg-prev { left: 5px; }
.pg-next { right: 5px; }

.pg-thumbs {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.pg-thumb {
    width: 70px;
    cursor: pointer;
    opacity: 0.6;
}

.pg-thumb.active {
    opacity: 1;
    border: 2px solid #000;
}

.product-gallery-small {
    max-width: 290px;
}

.product-gallery-small .pg-prev,
.product-gallery-small .pg-next {
    font-size: 16px;
    padding: 4px 6px;
}

.product-gallery-small .pg-prev,
.product-gallery-small .pg-next {
    opacity: 0;
    transition: opacity .2s;
}

.product-gallery-small:hover .pg-prev,
.product-gallery-small:hover .pg-next {
    opacity: 1;
}

/* Crop when small */
.product-gallery-small .pg-main {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-gallery-small .pg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}