.product-details {
    display: flex;
    justify-content: start;
    border-radius: 24px;
    background-color: #fbfbfb;
    gap: 20px;
    width: 100%;
}

.product-image {
    margin: 10px;
}
@media only screen and (max-width: 1400px){
    .product-image{
    width: 100%;
    text-align: center;
}
}

.product-details img {
    max-width: 100%;
    height: 400px;
    object-fit: contain;
    background-repeat: no-repeat;
    background-size: contain;
}


.product-info {
    margin: 10px;
    flex: auto;
}

.product-name {
    font-weight: 700;
    font-size: 1.8rem;
}


.product-right-divider {
    display: flex;
    flex-direction: column;
    flex: auto;
    justify-content: space-around;
}

.price-list {
    display: flex;
    justify-content: start;
    gap: 10px;
    align-items: center;
    margin: 10px 0;
}

#price-text {
    content: ' ';
    text-align: center;
    font-weight: 700;
    text-wrap: nowrap;
}


.btn-color {
    background-color: #fd7e14;
    border-color: #fd7e14;
    color: white;
    font-weight: 700;
}

.btn-color:hover {
    background-color: #f37814;
    border-color: #f37814;
    color: white;
}

.btn-color:active {
    background-color: #f37814 !important;
    border-color: #f37814 !important;
    color: white !important;
}