    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: "Inter", sans-serif;
    }
    p{
        margin: 0 !important;
    }

    body {
        background-color: #f5f5f5;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }

    .checkout-container {
        display: flex;
        gap: 98px;
        padding: 20px;
        width: 100%;
        max-width: 1320px;
        height: 100vh;
        overflow-y: auto;
    }

    .checkout-left,
    .checkout-right {
        flex: 1;
    }


    .schedule-btn {
        background: none;
        border: 1px solid var( --grey-d0);
        padding: 12px 16px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        margin-bottom: 24px;
        font-size: 16px;
    }

    .payment-option .option-card,
    .payment-option .option-cash {
        background-color: var(--background-light);
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }
    
    .payment-option .text-container {
        display: flex;
        flex-direction: column;
    }
    
    .payment-option .subtext {
        font-size: 16px;
        color: var(--grey-75);
    }
    

    .add-card,
    .arrow {
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
    }

    .make-payment-btn {
        background-color: #000;
        color: #fff;
        padding: 12px 24px;
        width: 100%;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        margin-top: 20px;
        font-size: 16px;
    }

    .coupon-head{
        font-size: 16px;
        color: var(--black);
        font-weight: 600;
        margin-bottom: 0px;
        padding-bottom: 20px;
        padding-top: 18px;

    }

    .coupon-button {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 12px 24px;
        border: 1px solid #ccc;
        border-radius: 8px;
        text-align: center;
        cursor: pointer;
        background-color: #f5f5f5;
        margin-bottom: 20px;
    }

    .off-canvas {
        position: fixed;
        right: -100%;
        top: 0;
        width: 500px;
        height: 100%;
        background-color: #fff;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .off-canvas.open {
        right: 0;
    }

    .close-btn {
        background: none;
        border: none;
        cursor: pointer;
    }

    .apply-coupon-btn {
        display: block;
        width: 100%;
        padding: 12px 24px;
        border: none;
        background-color: #000;
        color: var(--background-light);
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        margin-top: 10px;
        font-size: 16px;
    }

    .bill-summary {
        background-color: var(--background-light);
        padding: 15px;
        border-radius: 8px;
    }

    .bill-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .total {
        font-weight: bold;
        border-top: 1px dashed #000;
        padding-top: 10px;
    }

    .confirm-order-btn {
        background-color: #000;
        color: #fff;
        padding: 12px 24px;
        width: 100%;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        margin-top: 20px;
        font-size: 16px;
    }

    .headings16px{
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .itemsincart{
        background-color: var(--background-light);
        border-radius: 8px;
        padding: 8px;
        margin-bottom: 24px;
    }
    .head-mode{
        display: flex;
        justify-content: space-between;
        margin-bottom: 24px;
    }

    .head-mode .headings16px{
        margin-bottom: 0px;
    }



    /* coupon-card css */

    .coupon-card-wrap{
        margin-top: 24px;
    }

.coupon-card {
    width: 100%;
    background: var(--background-light);
    border-radius: 24px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 24px;
  }
  
  .discount-info {
    text-align: left;
    padding: 20px;
  }
  
  .discount-info h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
  }
  
  .discount-info p {
    font-size: 14px;
    color: #8c8c8c;
    margin: 5px 0 0;
  }
  
  .coupon-code-section {
    display: flex;
    align-items: center;
    background: #ffe9d5;
 
    padding: 10px;
  }
  
  .coupon-icon {
    font-size: 20px;
    color: #ff6b00;
    margin-right: 10px;
  }
  
  .coupon-code {
    flex: 1;
    font-size: 12px;
    color: #8c8c8c;
  }
  
  .coupon-code strong {
    font-size: 16px;
    color: #333333;
  }
  
  .apply-button {
    background-color: #ff6b00;
    color: #ffffff;
    font-weight: normal;
    border: none;
    border-radius: 8px;
    padding: 8px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 10px;
  }
  
  .apply-button:hover {
    background-color: #e65b00;
  }


  /* date picker*/
.ui-datepicker {
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



.delivery-card {
    width: 100%;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: none;
    margin-bottom: 24px ;
    background-color: var(--background-light);
}

/* Heading */
.delivery-card h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

/* Text lines */
.delivery-card p {
    margin: 8px 0;
    font-size: 14px;
    color: #333;
}

/* Update button */
.update-button {
    display: inline-block;
    padding: 8px 14px;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
}

.delivery-updates{
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
}



.pickup-location {
    width: 100%;
    /* border: 1px solid #ccc; */
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 24px;
    background: var(--background-light);
  }
  
  .pickup-location h2 {
    font-size: 14px;
    margin: 0;
    font-weight: bold;
  }
  
  .pickup-location p {
    font-size: 14px;
    margin: 8px 0;
    color: #333;
  }
  
  .selection-details {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: 12px;
    background-color: #f9f9f9;
  }
  
  .selection-details p {
    margin: 4px 0;
    font-size: 14px;
  }
  
  /* .selection-details span {
    font-weight: bold;
  }
   */

   .date-picker-field {
    padding: 6px 12px !important;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    max-width: 200px;
}

.date-picker-field:focus {
    outline: none;
    border-color: var(--grey-75);
}

