/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 15px;
}

.header2 {
    background-color: #F8F8F8;
    color: #333;
    text-align: center;
    padding: 40px 0;
    margin-bottom: 50px;
}

.header2 h1 {
    font-size: 36px;
    font-weight: bold;
}









.checkout {
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    display: flex; /* Flexbox for two columns */
    gap: 20px; /* Space between columns */
}

.checkout-left {
        flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #e8e8e8;
    padding: 10px;
}

.checkout-right {
    flex: 1; /* Right column takes 1/3 of the space */
    border: 1px solid #ccc;
    padding: 20px;
    background: #f9f9f9;
}

.section {
    margin-bottom: 20px;
}

h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group.inline {
    display: flex; /* Flexbox for inline fields */
    gap: 10px;
}

.form-group.inline div {
    flex: 1; /* Ensure equal width for inline inputs */
}

.form-group .error {
    color: #e63946;
    font-size: 12px;
    margin-top: 5px;
}

.error-message {
    color: #e63946;
    font-size: 14px;
    margin-bottom: 10px;
}

.terms {
    font-size: 12px;
    color: #555;
}

.terms a {
    text-decoration: underline;
}

.btn {
    width: 100%;
    padding: 10px;
    background: #333;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.order-summary {
    margin-bottom: 20px;    
}

.order-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.coupon-code{
    font-size: 12px !important;;
}

.image-container {
    width: 100px;
    height: 100px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.details p {
    margin: 0;
    font-size: 14px;
}

.details .price {
    font-weight: bold;
    margin-top: 5px;
}

.coupon {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.coupon input {
    flex: 1;
    padding: 5px;
    border: 1px solid #ccc;
}

.coupon button {
    padding: 5px 15px;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

.totals {
    font-size: 16px;
}

.subtotal, .total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.total-price {
    font-weight: bold;
    font-size: 18px;
}

.order-note{
    display: inline-flex;
}

.order-note #add-note{
    width: 16px;
}

.order-note label{
    margin-left: 16px;
    margin-top: 8px;
}

.mt-20px{
    margin-top: 20px;
}




.checkout-success {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    padding: 20px;
}

.checkout-success .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.success-message {
    margin-bottom: 30px;
}

.checkout-success .success-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.checkout-success .success-message h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.checkout-success .success-message p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.checkout-success .order-summary {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 0 auto 20px;
    max-width: 600px;
    text-align: left;
}

.checkout-success .order-summary h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.checkout-success .order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.checkout-success .image-container {
    width: 80px;
    height: 80px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.checkout-success .image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.checkout-success .details {
    flex: 1;
    padding: 0 15px;
    font-size: 14px;
}

.checkout-success .details span {
    color: #999;
    font-size: 12px;
}

.checkout-success .price {
    font-weight: bold; 
    font-size: 16px;
}

.checkout-success .order-total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin-top: 20px;
    font-weight: bold;
}

.checkout-success .back-to-home {
    margin-top: 20px;
}

.checkout-success .back-to-home button {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

.checkout-success .back-to-home button:hover {
    background: #555;
}
.details .original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.details .discounted-price {
    font-weight: bold;
    color: #333;
}




