#product-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
    max-width: 600px;
}

.our-lookbook {
    display: flex;
    align-items: center;
    gap: 30px;
}

.product-display {
    width: 65%;
    display: flex;
    justify-content: center;
}

.our-lookbook-content {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.product-display img {
    width: calc(50% - 20px);
    height: 530px;
    object-fit: cover;
    margin-bottom: 10px;
}


.product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-info h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px;
    color: #273036;
    font-family: 'Montserrat';
    text-align: center;
}

.product-info p {
    font-size: 16px;
    color: #326b96;
    margin-bottom: 0;
    font-weight: 600;
}

.our-lookbook .navigation {
    display: flex;
    width: 100%;
    gap: 30px;
    align-items: center;
}

.our-lookbook .navigation .slider-btn {
    width: 45px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: 45px;
    background-color: #326b96;
    border: 1px solid #326b96;
    transition: background-color 0.3s ease;
    font-size: 18px !important;
    line-height: 28px;
}

.our-lookbook .navigation .slider-btn:hover {
    background-color: transparent !important;
    color: #326b96;
}

.our-lookbook-content .featured-image {
    width: 350px;
    height: 350px;
    object-fit: cover;
    max-width: unset;
}

.our-lookbook .navigation .slider-btn:hover {
    background-color: #005f86;
}


@media(max-width:1500px) {

    .product-display img {
        width: calc(50% - 10px);
        height: 380px;
    }
    
    .product-display {
        width: 65%;
    }
    
    .our-lookbook-content {
        width: 35%;
    }

    .our-lookbook-content .featured-image {
        width: 250px;
        height: 250px;
    }
}


@media(max-width:1199px) {

    .product-display img {
        width: calc(50% - 10px);
        height: 300px;
    }
    
    .our-lookbook-content .featured-image {
        width: 200px;
        height: 200px;
    }

}

@media(max-width:1050px) {

    .our-lookbook {
        flex-wrap: wrap;
    }
    
    .product-display {
        width: calc(100% - 30px);
        gap: 30px;
    }
    
    .product-display img {
        width: calc(50% - 20px);
        height: 400px;
    }
    
    .our-lookbook-content {
        width: 100%;
    }
    
    .our-lookbook-content .featured-image {
        width: 80%;
        height: 350px;
    }
    
    .our-lookbook .navigation {
        justify-content: center;
    }

}


@media(max-width:991px) {

    .product-display img{
        height: 300px;
    }

    .our-lookbook-content .featured-image {
        height: 200px;
        width: 50%;
    }
    
}

@media(max-width:767px) {

    .product-display img{
        height: 280px;
    }
    .product-info h3 {
        font-size: 14px;
        line-height: 24px;
    }
    .our-lookbook .navigation .slider-btn {
        width: 40px;
        height: 40px;
    }
    
}

@media(max-width:480px) {

    .product-display img {
        height: 200px;
    }
}