.media-gallery__viewer {
    position: relative;
    border: 0;
    background-color: rgb(var(--bg-color)) !important;
    box-shadow: inset 0 0 0 1px rgb(var(--text-color));
    isolation: isolate;
}

.media-gallery__viewer::before {
    content: '';
    position: absolute;
    inset: -7px;
    border: 7px solid white;
    border-radius: 8px;
    z-index: -1;
}

.media-gallery__viewer::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgb(var(--text-color));
    border-radius: 9px;
}

.product-info {
    padding: 32px !important;
    position: relative;
    background-color: rgb(var(--bg-color)) !important;
    box-shadow: inset 0 0 0 1px rgb(var(--text-color));
}

.product-info::before {
    content: '';
    position: absolute !important;
    inset: -7px !important;
    border: 7px solid white;
    border-radius: 8px;
    z-index: -1;
    width: auto !important;
}

.product-info::after {
    content: '';
    position: absolute !important;
    width: auto !important;
    inset: -8px !important;
    border: 1px solid rgb(var(--text-color));
    border-radius: 9px;
    z-index: -1;
    background: transparent !important;
}