.product-details-container {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.detail-box {
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
}

.heading_container h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.product-info p {
    font-size: 16px;
    margin-bottom: 5px;
}

.add-to-basket-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.add-to-basket-btn:hover {
    background-color: #0056b3;
}

.sideinf {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 20px;
    /* Adjust as needed */
    width: 90%;
}

.sideinf__item {
    flex: 1;
    text-align: center;
}



.sideinf__value {
    font-size: 14px;
    color: #666;
}


.quantity-selector {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.quantity-label {
    margin-right: 10px;
    font-weight: bold;
    color: #333;
    /* Match your theme's color */
}

.quantity-input {
    padding: 8px 12px;
    border: 1px solid #ccc;
    /* Match your theme's color */
    border-radius: 4px;
    font-size: 16px;
    width: 60px;
    /* Adjust as needed */
}


.out-of-stock{
    background-color: indianred !important;
    cursor: not-allowed !important;
}



/* .alert-success button {
    margin-right: auto;
    color: #cd5c5c;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    background-color: transparent;
} */

.alert-success {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    /* To remove extra margin */
}

.alert-success button {
    color: #cd5c5c;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    background-color: transparent;
}

/* Container for buttons */
.button-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.form_add{
    width: 100%;
}
/* Add to Basket button styles */
.add-to-basket-btn,
.back-to-products-btn {
    flex: 1;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
}


/* Add to Basket button styles */
.add-to-basket-btn {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    
}

/* Back to Products button styles */
.back-to-products-btn {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}


