.product-photo {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: 3;
    background-color: #fff;
    width: 100% !important;
    display: none;
}
.product-photo--show {
    display: flex;
}
.product-photo__content {
    width: 100%;
    height: 100%;
}
.product-photo__close {
    position: absolute;
    top: 5px;
    right: 5px;
}
.product-photo__slider {
    display: flex;
    padding: 40px;
    height: 100%;
    justify-content: center;
}
.product-photo__thumb {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.product-photo__thumb-container {
    overflow: hidden;
}
.product-photo__thumb-prev,
.product-photo__thumb-next {
    display: flex;
    width: 30px;
    height: 30px;
    color: var(--color-secondary, #222222);
    border-radius: 50%;
    border: 2px solid var(--color-secondary, #222222);
    padding: 5px;
}
.product-photo__thumb-prev[aria-disabled="true"],
.product-photo__thumb-next[aria-disabled="true"] {
    color: var(--color-disabled, #ccc);
    border-color: var(--color-disabled, #ccc);
}
@media (min-width: 675px) {
    .product-photo__thumb-next:last-child {
        transform: rotate(180deg);
    }
}
@media (max-width: 675px) {
    .product-photo__thumb-prev:first-child {
        transform: rotate(-90deg);
    }
    .product-photo__thumb-next:last-child {
        transform: rotate(90deg);
    }
}
.product-photo__thumb-prev:not([aria-disabled="true"]):hover,
.product-photo__thumb-next:not([aria-disabled="true"]):hover {
    color: var(--color-primary, #cb11ab);
    border-color: var(--color-primary, #cb11ab);
}

.product-photo__thumb-item {
    overflow: hidden;
    border-radius: 5px;
    border: 2px solid #fff;
    height: 100% !important;
    width: 100% !important;
    max-height: 100px;
    max-width: 90px;
}
.product-photo__thumb-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.product-photo__popup-container {
    width: 80vw;
    max-width: 630px;
    max-height: 110vw;
    height: 100%;
}
.product-photo__popup-list {
    max-width: 100%;
}
.product-photo__popup-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.product-photo__popup-item:hover img {
    display: none;
}

.product-photo__popup-prev,
.product-photo__popup-next {
    display: flex;
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 30px;
    height: 30px;
    color: var(--color-secondary, #222222);
    border-radius: 50%;
    padding: 5px;
}
.product-photo__popup-prev {
    left: 0;
    transform: rotate(-90deg);
}
.product-photo__popup-next {
    right: 0;
    transform: rotate(90deg);
}
.product-photo__popup-prev[aria-disabled="true"],
.product-photo__popup-next[aria-disabled="true"] {
    color: var(--color-disabled, #ccc);
}
.product-photo__popup-prev:not([aria-disabled="true"]):hover,
.product-photo__popup-next:not([aria-disabled="true"]):hover {
    color: var(--color-primary, #cb11ab);
}
@media (min-width: 675px) {
    .product-photo__popup-next:last-child {
        transform: rotate(180deg);
    }
}
@media (max-width: 675px) {
    .product-photo__popup-prev,
    .product-photo__popup-next {
        display: none;
    }
}

@media (max-width: 675px) {
    .product-photo__slider {
        flex-direction: column-reverse;
    }
    .product-photo__thumb {
        flex-direction: row;
    }
    .product-photo__popup-container {
        height: 100%;
    }
}