.pl-lookbook {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border: 2px solid #fff;
    border-radius: 40px;
}

.pl-dot {
    position: absolute;
    width: 70px;
    height: 70px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
}
.pl-dot span {
    width: 25px;
    height: 25px;
    background: white;
    margin: 0 auto;
    align-self: center;
    justify-self: center;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}
.pl-dot:after {
    position: absolute;
    content: '';
    width: 47px;
    height: 47px;
    top: 10px;
    left: 10px;
    background: transparent;
    border-radius: 50%;
    border: 2px solid;
}
.pl-dot:hover {
    transform: scale(1.3);
}
.pl-dot.active,.pl-dot.pl-dot.active:after{
    border-color: #FF7400;
}
.pl-dot.active span{
    background: #FF7400;
}
.pl-product-popup {
    position: absolute;
    background: rgb(255 255 255 / 11%);
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: auto;
    display: flex;
    backdrop-filter: blur(15px);
    border-radius: 10px;
}
.pl-product-popup img {
    width: 85px;
    height: auto;
    object-fit: contain;
    margin-right: 15px;
    border-radius: 14px;
}
.pl-product-popup .pl-product-name {
    font-weight: bold;
    margin: 5px 0;
}

.pl-product-popup .pl-product-price {
    color: #fff;
}
.pl-product-popup a,.pl-product-popup a:hover{
    color: #FF7400;
}
/* Loading Spinner */
.pl-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}