
body {
        font-family: 'Century Gothic', sans-serif;
        background-color: #fdfdfd;
        color: #333;
        margin: 0;
        padding: 0;
    }
    
    .checkout-header {
        display: flex;
        justify-content: start;
        align-items: center;
        background-color: #000000;
        color: white;
    }
    
    .checkout-header > img {
        height: 100px;
        width: 155px;
    }
    
    .checkout-header > #shopping {
        height: 35px;
        width: 35px;
    }
    
    .checkout-main-div {
        display: flex;
        justify-content: center;
        padding: 20px;
        margin-top: -5px;
        gap: 53px;
        align-items: flex-start;
        max-width: 100%;
        /* margin: 0 auto; */
    }

    .checkout-form-div {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: 1px solid #ddd;
    width: 75%;
}
    
    .checkout-form-div h3 {
        font-size: 22px;
        font-weight: 600;
        color: var(--dark_pink);;
        margin-bottom: 10px;
    }
    
    .checkout-form-div input[type="text"] {
        padding: 12px;
        font-size: 16px;
        border-radius: 5px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        width: 100%;
        height: 55px;
    }
    
    .double-input-span{
        display: flex;
        gap: 3px;
    }
    .double-input-span > input{
        width: 45%;
    }
    .transaction-main-span > span{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
}
.transaction-main-span > span > input 
{
    margin-top: -14px;
    margin-left: 0px;
}
.checkbox-span{
    gap: 5px;
    display: flex;
}
    .form-contact-div input,
    .form-delivery-div input,
    .form-delivery-div .double-input-span > input {
        transition: border-color 0.3s;
    }
    
    .form-contact-div input:focus,
    .form-delivery-div input:focus,
    .form-delivery-div .double-input-span > input:focus {
        border-color: var(--dark_pink);;
        outline: none;
    }
    
    .checkbox-span p {
        font-size: 14px;
        color: #555;
        margin: 0;
    }
    
    .form-payment-div {
        padding-top: 10px;
    }
    
    .form-payment-div p {
        font-size: 16px;
        font-weight: 500;
       color: #000000;
    }
    
    .payment {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 15px;
        background-color: #fafafa;
        border-radius: 8px;
        border: 1px solid #e6e6e6;
        color: #333;
    }
    
    .payment h1 {
        font-size: 18px;
        font-weight: 700;
        color: #333;
    }
    
    .payment h2,
    .payment p {
        font-size: 16px;
        font-weight: 500;
        color: #666;
    }
    
    .submit-div {
        text-align: center;
    }
    
    .submit-div button {
        background-color: var(--dark_pink);;
        padding: 15px 30px;
        font-size: 18px;
        border-radius: 5px;
        color: white;
        font-weight: 700;
        border: none;
        width: 100%;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .submit-div button:hover {
        background-color: white;
        border: 1px solid var(--dark_pink);
        color: var(--dark_pink);
    }
    
    .checkout-summery-div {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .checkout-product-div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 15px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border: 1px solid #ddd;
        width: 100%;
    }
    
    .checkout-product-div h2,
    .checkout-product-div h3 {
        font-size: 18px;
        font-weight: 500;
        color: #333;
    }
    
    .checkout-product-div img {
        height: 80px;
        width: 80px;
        border-radius: 8px;
        border: 1px solid #ddd;
        object-fit: cover;
    }
    
    .supply-code-div {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    
    .supply-code-div input {
        padding: 12px;
        font-size: 16px;
        font-weight: 500;
        border-radius: 5px;
        border: 1px solid #ccc;
        width: 70%;
    }
    
    .supply-code-div button {
        padding: 12px 20px;
        background-color: var(--dark_pink);;
        color: white;
        font-size: 16px;
        font-weight: 700;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .supply-code-div button:hover {
        background-color: #0056b3;
    }
    .subtotal-div{
        width: 100%;
    }

    .subtotal-div h5,
    .subtotal-div h6 {
        color: #333;
    }
    
    .subtotal-div .sub-span , .sub-span-total{
        display: flex;
        justify-content: space-between;
    }
    
    .subtotal-div .sub-span-total h5 {
        color: #333;
        font-weight: 600;
    }
    
   .subtotal-div .sub-span-total h6 {
    color: var(--dark_pink);
    font-weight: 900;
    font-size: 20px;
}

    @media(max-width:768px){
        .checkout-main-div {
        flex-direction: column-reverse;
        }
        .checkout-main-div {
            display: flex;
            justify-content: center;
            padding: 9px;
            margin-top: -5px;
            gap: 20px;
            align-items: flex-start;
            max-width: 1200px;
            /* margin: 0 auto; */
        }
        form {
            display: flex;
            width: 100%;
            gap: 20px;
            margin-top: 10px;
            padding: 5px;
            flex-direction: column-reverse;
        }
        .checkout-form-div {
            display: flex;
            flex-direction: column;
            gap: 15px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            border: 1px solid #ddd;
            width: 100%;
        }
        .modal-content-wrapper {
            display: flex;
            gap: 30px;
            padding: 20px;
            flex-direction: column-reverse;
        }
        .modal-left{
            display: flex;
            flex-direction: column-reverse;
        }
    }



    
.checkout-heading, .thank-you-section h1 {
    text-align: center;
    margin-top: 20px;
    font-size: 28px;
    color: #444;
}

.review-order-section, .thank-you-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 1200px;
}

.review-details, .order-summary-checkout {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background-color: #fafafa;
}

.review-details h2, .order-summary-checkout h2 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    margin-bottom: 15px;
    font-size: 22px;
}

.order-items .review-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.order-items img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.review-item h3 {
    flex: 1;
    font-size: 18px;
    margin: 0 15px;
}

.review-item p, .edit-item {
    font-size: 16px;
    color: #666;
}

.edit-item {
    color: #3498db;
    text-decoration: none;
    cursor: pointer;
}

.address-payment-details h2 {
    margin-top: 20px;
}

.address-payment-details p {
    color: #555;
    margin: 5px 0;
}

/* Order Summary Styling */
.total-summary p {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 18px;
}

.total-summary .total-price {
    font-weight: bold;
    color: #e74c3c;
}

.place-order-btn {
    display: block;
    width: 100%;
    background-color: #27ae60;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.place-order-btn:hover {
    background-color: #2ecc71;
}

/* Thank You Section Styling */
.thank-you-section p {
    font-size: 18px;
    margin: 15px 0;
    text-align: center;
}

.thank-you-section strong {
    color: #2c3e50;
}

.thank-you-section button {
    margin: 15px 10px;
    padding: 10px 20px;
    background-color: #2980b9;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.thank-you-section button:hover {
    background-color: #3498db;
}
header , footer{
    display: none;
}
form{
    display: flex;
    width: 100%;
    gap: 54px;
}
.modal-content {
    border-radius: 15px;
    background-color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark_pink);
    color: var(--white);
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
  }
  
  .modal-heading {
    text-align: center;
    color: var(--dark_pink);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .modal-content-wrapper {
    display: flex;
    gap: 30px;
    padding: 20px;
  }
  
  .modal-left,
  .modal-right {
    flex: 1;
  }
  
  .order-summary,
  .address-payment,
  .order-total {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .order-summary h2,
  .address-payment h2,
  .order-total h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .order-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .review-item {
    display: flex;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }
  
  .review-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
  }
  
  .item-details h3 {
    font-size: 18px;
    color: #333;
    margin-left: -1px;
  }
  .item-details p {
margin-top: -10px;
  }
  .edit-link {
    color: var(--dark_pink);
    font-size: 14px;
    text-decoration: none;
  }
  
  .order-total .total-summary p {
    font-size: 16px;
    margin: 5px 0;
    color: #000000;
  }
  
  .total-price {
    font-weight: 700;
    font-size: 18px;
  }
  
  .place-order-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: var(--dark_pink);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .place-order-btn:hover {
    background-color: white;
    border: 1px solid var(--dark_pink);
    color: var(--dark_pink);  }
  
  .thank-you-section {
    text-align: center;
    margin-top: 20px;
  }
  
  .secondary-btn,
  .primary-btn {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 5px;
  }
  
  .secondary-btn {
    background-color: #ddd;
    color: #333;
  }
  
  .primary-btn {
    background-color: var(--dark_pink);
    color: var(--white);
  }

  .checkout-span-checkbox  {
    display: flex;
    align-items: center;
    margin-top: -13px;
    gap: 4px;
    padding: 2px;
}
.checkout-span-checkbox > h3 {
    font-size: 14px;
    margin-top: 10px;
}