.container-detailed {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    margin-top:89px;
}


.product-detail {
    display: flex;
    gap: 30px;
    /* align-items: flex-start; */
}

.product-images {
    width: 59%;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.product-images img {
    width: 100%;
    height:602px;
    object-fit:cover;
    border-radius: 16px;
}

/* Image Slider for smaller images */
.thumbnail-images {
    display: flex;
    justify-content: start;
    gap: 14px;
    margin-top: 15px;
    overflow-x: scroll;
    scrollbar-width: none;

}

.thumbnail-images img {
    width: 110px;
    height:110px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail-images img:hover {
    transform: scale(1.1);
}

.product-info {
    width: 39%;
    padding: 20px;
    border-radius: 8px;
    /* position: sticky;
    top: 64px; */
}


.product-info h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
}

.prices {
    font-size: 26px;
    font-weight: 600;
    color: purple;
    margin-bottom: 25px;
    display: flex;
    gap:10px;
    align-items: center;
}

.prices span{
    font-size:19px;
    color:#4f4f4f;
    font-weight:500;
}

.titles-detail{
    color:#333333;
    font-weight:600;
    font-size:17.6px !important;
}

/* Color Circle */
.color-selection {
    width: 100%;
    display: flex;
    flex-wrap: wrap;     
    align-items: center;
    gap: 10px;
    margin-bottom: 23px;
}

.color-circle {
    width: auto;
    height: auto;
    border-radius:5px;
    border:1.5px solid #000;
    cursor:pointer;
}

.color-circle.selected {
    border: 2px solid #800080;
    background:black !important;
    color:rgb(255, 255, 255);
    transform: scale(1.1);
}

.product-description{
    color:#111 !important; 
    font-size:18px;
    letter-spacing:1px;
    line-height:29px;
    margin-bottom:29px;
}

/* Quantity Box */
.quantity-box-detail {
    margin-bottom:35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    padding:0px 0px;
    border-radius: 0px;
    height:40px;
    width:134px;
}

.quantity-box-detail div {
    background-color: #e0e0e0;
    border-radius: 0px;
    padding: 0px;
    cursor: pointer;
    height:100%;
    width:39%;
}

.quantity-box-detail .input-quantity input {
    width: 48px;
    height:100%;
    font-size: 16px;
    border: none;
    text-align: center;
    background-color: white;
    border-radius: 0px;
}

/* Add to Cart Button */
.add-to-cart-detail{
    background-color: #022D57;
    width: 100%;
    padding: 12px;
    font-size: 18px;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.add-to-cart-detail:hover {
    background-color:#02376b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-detail {
        flex-direction: column;
        align-items: center;
    }

    .product-info {
        width: 100%;
        padding: 1px;
    }

    .product-images {
        width: 100%;
        padding:1px;
    }

    .product-images img {
        width: 100%;
        height:350px;
    }

    .thumbnail-images {
        flex-direction: rows;
        align-items: center;
    }

    .thumbnail-images img{
        width:68px;
        height:68px;
    }

    .btn-box-detail {
        position: static; /* Default position */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        transform: translateY(0);
    }
    
    .btn-box-detail{
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        z-index: 10;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
        transform: translateY(0);
        padding:12px 20px;
    }

    .product-info h1{
        font-size:28px;
    }
    
}