body {
    font-family: Arial, sans-serif;
}

.product-container {
    width: 300px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
}

.product-container img {
    max-width: 100%;
    height: auto;
}

.product-container h1 {
    font-size: 1.5em;
}

.product-container p {
    margin: 10px 0;
}

input[type="number"] {
    width: 50px;
}

.product-container span {
    color: red; /* Optional: style for MRP */
}

.product-container strong {
    color: green; /* Optional: style for deals */
}

 /* Additional styling for better UX */
 body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}

.container.mt-4 {
    max-width: 1000px;
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

h2,
h4 {
    color: #333;
    font-weight: 600;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    font-weight: bold;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.form-group label {
    font-weight: 600;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.cart-item img {
    width: 120px;
    margin-right: 20px;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-summary {
    margin-top: 20px;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.cart-summary h5 {
    font-weight: bold;
}

.text-success {
    color: #28a745;
}

.price-details {
    font-size: 1.1em;
    font-weight: 500;
}

.quantity-input {
    width: 60px;
    text-align: center;
}

.qty-box {
    display: inline-flex;
    align-items: center;
}

.qty-box input[type="button"] {
    border: 1px solid #ccc;
    background-color: #ffffff;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
}

.form-check-label {
    font-weight: 500;
}

.gstin-box {
    padding: 15px;
    background-color: #f1f1f1;
    border-radius: 10px;
    margin-top: 15px;
}

.form-group input,
.form-group select {
    border-radius: 5px;
}

.btn-container {
    margin-top: 20px;
}

.error-message {
    color: red;
    font-size: 0.9em;
    margin-top: 5px;
}

.address-head {
    font-weight: bold;
    margin-top: 20px;
}