.cart-container {
    max-width: 1200px;
    margin: 20px auto;
    font-family: var(--edublink-font-primary);
}

/* Checkout Steps */
.checkout-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    padding: 0 20px;
    gap: 20px;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    gap: 50px;
}

.title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
}

.step {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    flex-direction: column;
}
.step::after {
    content: "";
    position: absolute;
    top: 36%;
    left: 90%;
    transform: translateY(-50%);
    border: 1px dashed #E6E6E6;
    width: 130%;
    height: 2px;
    z-index: -1;
}
.step:last-child::after {
    display: none;
}
.step.active::after {
    border-color: #00B5FF;
    border-style: solid;
}
.step-number {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #E6E6E6;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 0 10px; */
    font-size: 18px;
}

.step.active .step-number {
    background-color: #BAEBFF;
    border-color: #BAEBFF;
    color: #00B5FF;
}
.step.active .step-number span{
    display: none;
}
.step.active .step-number::after {
    content: "✔";
    font-size: 22px;
    color: #00B5FF;

}
.step-label {
    color: #666;
    font-size: 14px;
}

.step.active .step-label {
    color: #00C3F9;
}

/* .steps-line {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background-color: #E6E6E6;
    width: 80%;
    z-index: 0;
} */

/* Cart Items */
.checkout-body {
    gap: 15px;
    display: flex;
    justify-content: space-between;
}
@media ( max-width: 768px){
    .checkout-body {
        flex-direction: column;
    }
}
.chheckout-totals {
    flex: 1;
}

.cart-body {
    flex: 2;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #F3F6F8;
    border-radius: 8px;
    margin-bottom: 15px;
}

.item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-right: 20px;
    overflow: hidden;
    background: white;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.product-name {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    color: #106F97;
}
.product-name .name {
    color: #106F97;
    font-size: 16px;    
    font-weight:400;
}
.product-name .title {
    color: #106F97;
    line-height: 27px;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    gap: 10px;
}

.product-price {
    /* text-align: right;
    color: #333; */
    font-weight: 500;
    font-size: 26px;
}

.product-price-old {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}
.price-remove{
    display: flex;
    flex-direction: column;
    width: 20%;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}
.product-remove {
    margin-left: 20px;
    cursor: pointer;
}

.product-remove svg {
    width: 20px;
    height: 20px;
}

/* Coupon Code */
.checkout_coupon {
    /* margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #E6F8FF; 
    padding: 15px;
    border-radius: 8px; */
}

.checkout_coupon .form-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 1;
}

.checkout_coupon input#coupon_code {
    height: 45px;
    flex: 1;
    padding: 10px 50px;
    border: 0;
    background-color: #E6F8FF;
    border-radius: 12px 0 0 12px;
    font-size: 16px;
    position: relative;
    background-image: url('./../../images/ticket.svg');
    background-position: 10px center;
    background-repeat: no-repeat;
}
/* .checkout_coupon input#coupon_code::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
} */
.button.apply_coupon {
    background: #E6F8FF;
    color: #000000;
    padding: 16px;
    border-radius: 0 12px 12px 0;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

/* Cart Footer */
.cart-totals {
    background: #E6F8FF;
    padding: 25px 16px;
    border-radius: 36px;
    margin-top: 24px;
}

.total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 16px;
    color: #4B5563;
}

.total.before-discount {
    font-weight: 500;
}

.total.discount-prsantge {
    color: #00C3F9;
}

.total.discount {
    font-weight: 600;
    color: #333;
    font-size: 16px;
    border-top: 1px solid #E6E6E6;
    margin-top: 10px;
    padding-top: 15px;
}

.total-price {
    color: #333;
    font-weight: 500;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 40px;
    /* background: #F8F8F8; */
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    font-weight: bold;
}

.empty-cart img {
    max-width: 350px;
    margin-bottom: 20px;
}

/* Proceed to Checkout Button */
#aladwaa_invoice,
.proceed-to-checkout {
    display: block;
    width: 100%;
    background: #00C3F9;
    color: white;
    padding: 15px;
    border-radius: 100px;
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
    cursor: pointer;
    border: none;
    font-size: 16px;
}


.refund {
    padding: 15px;
    background: #e6f8ff;
    border-radius: 16px;
    margin-top: 16px;
    display: flex;
    align-content: center;
    align-items: center;
    line-height: 1;
    gap: 13px;
    cursor: pointer;
    color: #00B5FF;
    font-size: 12px;    
}
.refund span:last-child{
    margin-left: auto;
}