.product-page-discovery {
    position: relative;
}

.product-page-discovery.isLoading {
    min-height: 120px;
}

.product-page-discovery.isLoading:after {
    border-width: 0 3px 0 0;
    border-style: solid;
    border-color: rgb(252, 97, 115);
    border-radius: 50%;
    display: block;
    left: calc((100% - 61px) / 2);
    top: calc((100% - 61px) / 2);
    margin: 0;
    position: absolute;
    width: 55px;
    height: 55px;
    content: "";
    animation: spin .6s infinite linear;
    -webkit-animation: spin .6s infinite linear;
}

.product-lookbook-content {
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 400ms;
    cursor: pointer;
}

.product-lookbook-content:hover {
    background-color: rgba(0, 0, 0, 0.2);
    transition: background-color 400ms;
}

.product-lookbook-parallax {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    flex-wrap: wrap;
}
.product-lookbook-parallax .content {
    text-align: center;
    margin: 0 auto;
}
.product-lookbook-parallax .lookbook-view-icon {
    background: #fc6173;
    height: 55px;
    width: 55px;
    font-size: 20px;
    border-radius: 100%;
    color: #fff;
    line-height: 55px;
}

/* Ensure the parallax background stays behind content but remains visible */
.product-lookbook-parallax .parallax__container {
    z-index: 0;
    pointer-events: none;
}

.product-lookbook-parallax .parallax__container .parallax {
    z-index: 0;
}

.product-lookbook-parallax .content {
    position: relative;
    z-index: 2;
}

.product-lookbook-parallax::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.product-lookbook-parallax:hover::after {
    opacity: 0.35;
}

.product-virtualshowroom-content {
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 400ms;
}

.product-virtualshowroom-space {
    margin-top: 30px;
    padding-top: 15px;
    background: #f4f4f4;
}

.product-virtualshowroom-space .product-virtualshowroom-head {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -50px;
    position: relative;
    z-index: 2;
    pointer-events: none;
}
.product-virtualshowroom-space .product-virtualshowroom-head .product-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid #fff;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.product-virtualshowroom-space .product-virtualshowroom-head .product-image img {
    object-fit: contain;
    max-height: 126px;
    max-width: 126px;
}
.product-virtualshowroom-space .product-virtualshowroom-text {
    margin-left: 30px;
    padding-bottom: 35px;
}

.product-virtualshowroom-space .product-virtualshowroom-text h2 {
    margin-bottom: 10px;
}

.product-virtualshowroom-image {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    flex-wrap: wrap;
    z-index: 1;
    cursor: pointer;
}
.product-virtualshowroom-image:after {
    background: rgba(255, 255, 255, 0);;
    transition: all 400ms ease;
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
}
.product-virtualshowroom-image:hover:after {
    background: rgba(0, 0, 0, 0.2);
    visibility: visible;
    opacity: 1;
}
.product-virtualshowroom-image .content {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
}

.product-virtualshowroom-image .virtual-view-icon {
    background: #fc6173;
    height: 55px;
    width: 55px;
    font-size: 20px;
    border-radius: 100%;
    color: #fff;
    line-height: 55px;
}
.product-virtualshowroom-space .product-virtualshowroom-image img {
    display: flex;
}

@media only screen and (max-width: 767px) {
    .product-virtualshowroom-space .product-virtualshowroom-head {
        display: block;
        margin-bottom: 0px;
        margin-top: -85px;
        text-align: center;
    }

    .product-virtualshowroom-space .product-virtualshowroom-head .product-image {
        margin: 0 auto;
        margin-bottom: 15px;
    }

    .product-virtualshowroom-space .product-virtualshowroom-text {
        margin-left: 0px;
        padding: 0 15px;
    }

    .product-virtualshowroom-space {
        margin-top: 115px;
    }
}
