.checkout-progress {
    max-width: 735px;
    margin: 40px auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 65px;
}

.progress-circle {
    width: 36px;
    height: 36px;
    border: 2px solid #515150;
    border-radius: 50%;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #474747;
}

.progress-step span {
    margin-top: 18px;

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;

    color: #474747;
}

.progress-line {
    width: 192px;
    border-top: 0.5px solid #787878;
    margin-top: 18px;
}

/* Active Step */

.progress-step.active .progress-circle {
    border-color: #C5902C;
    color: #C5902C;
}

.progress-step.active span {
    color: #474747;
}

.cart-products-section {
    max-width: 1268px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.cart-product-card {
    position: relative;
    background: #FFFFFF;
    min-height: 273px;
    padding: 15px 15px;

    display: flex;
    align-items: center;
    gap: 10px;

    box-shadow: 0px 4px 14.4px rgba(0, 0, 0, 0.25);
}

.cart-delete-btn {
    position: absolute;
    top: 12px;
    right: 12px;

    border: none;
    background: none;
    cursor: pointer;
}

.cart-delete-btn img {
    width: 24px;
    height: 24px;
}

.cart-product-image {
    width: 160px;
    flex-shrink: 0;
}

.cart-product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cart-product-content {
    flex: 1;
}

.cart-product-title {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.cart-name {
    font-weight: 500;
    font-size: 14px;
    color: #000;
}

.cart-variant {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #000;
}

.cart-price-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.cart-discount {
    color: #018B00;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
}

.cart-old-price {
    color: #656363;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-decoration: line-through;
}

.cart-price {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.cart-delivery-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.cart-delivery-row img {
    width: 28px;
}

.cart-express {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.cart-delivery-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.cart-qty-select {
    width: 135px;
    height: 37px;

    border: 1px solid #000;
    border-radius: 4px;

    background: #fff;

    font-family: 'Inter', sans-serif;
    font-size: 14px;

    padding: 0 10px;
    cursor: pointer;
}

@media(max-width:991px) {

    .cart-products-section {
        grid-template-columns: 1fr;
    }

    .cart-product-card {
        min-height: auto;
    }
}

@media(max-width:576px) {

    .cart-product-card {
        flex-direction: column;
        text-align: center;
    }

    .cart-product-title {
        justify-content: center;
    }

    .cart-price-row,
    .cart-delivery-row {
        justify-content: center;
    }
}

.price-details-section {
    width: 100%;
    padding: 30px 20px;
    font-family: 'Inter', sans-serif;
    background: #fff;
}

.price-details-section h2 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 18px;
    color: #000;
}

.price-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #474747;
    font-weight: 400;
    max-width: 320px;
}

.price-row span:first-child {
    flex: 0 1 auto;
    min-width: 140px;
}

.price-row span:last-child {
    color: #000;
    font-weight: 400;
    margin-left: auto;
    text-align: right;
}

.discount {
    color: #018B00;
}

.discount span:first-child {
    color: #018B00;
}

.discount span:last-child {
    color: #018B00;
    font-weight: 400;
}

.dashed-line {
    border: none;
    border-top: 1px dashed #d0d0d0;
    margin: 10px 0;
    max-width: 320px;
}

.order-total {
    margin-top: 10px;
    margin-bottom: 18px;
}

.order-total span:first-child {
    flex: 0 1 auto;
    min-width: 140px;
    font-weight: 500;
}

.order-total span:last-child {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-left: auto;
}



.discount-box {
    width: 320px;
    height: auto;
    min-height: 45px;
    border: 1px solid #333;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    margin: 16px 0 18px 0;
    color: #018B00;
    font-weight: 500;
    font-size: 13px;
}

.discount-box .discount-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-box .discount-icon img {
    width: 20px;
    height: 20px;
}

.discount-box strong {
    margin-left: auto;
    color: #018B00;
    font-size: 13px;
    font-weight: 600;
}

.checkout-bar {
    background: linear-gradient(90deg, #FFF5EB 0%, #FFF4E9 100%);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.checkout-info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.checkout-info p {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #363636;
}

.continue-btn {
    width: 160px;
    height: 50px;
    background: #C5902C;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.continue-btn:hover {
    opacity: 0.9;
}