.main-wrapper-ct {
    padding: 40px 0px;
}

/* Title */
.page-title-ct {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Progress bar */
.shipping-bar-ct {
    width: 100%;
    height: 14px;
    background: #e6f6ee;
    border-radius: 20px;
    overflow: hidden;
}

.progress-ct {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        #61c297,
        #61c297 10px,
        #7ad3a8 10px,
        #7ad3a8 20px
    );
}

.shipping-text-ct {
    color: #4db38a;
    margin: 12px 0 40px;
}

/* Layout */
.cart-layout-ct {
    display: flex;
    gap: 60px;
}

/* Left */
.cart-left-ct {
    width: 65%;
}

.cart-head-row-ct {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    font-weight: bold;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-ct {
    display: grid;
    grid-template-columns: 100px 2fr 1fr 1fr 1fr;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.product-img-ct img {
    width: 70px;
}

.product-name-ct {
    margin: 0;
    font-size: 15px;
}

.product-color-ct {
    color: gray;
    font-size: 14px;
}

.old-price-ct {
    text-decoration: line-through;
    color: gray;
    display: block;
}

.new-price-ct {
    font-weight: bold;
}

.product-qty-ct {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    width: 90px;
    justify-content: space-between;
    padding: 5px 10px;
}

.qty-btn-ct {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.product-total-ct {
    display: flex;
    align-items: center;
    gap: 20px;
}

.remove-item-ct {
    cursor: pointer;
    font-size: 18px;
}

/* Comments */
.comments-box-ct {
    margin-top: 40px;
}

.comments-title-ct {
    font-weight: 600;
    margin-bottom: 10px;
}

.comments-textarea-ct {
    width: 100%;
    height: 120px;
    padding: 12px;
    resize: none;
    border: 1px solid #ccc;
}

.secure-text-ct {
    margin-top: 15px;
    font-size: 14px;
    color: #444;
}

/* Right */
.cart-right-ct {
    width: 35%;
}

.summary-title-ct {
    font-size: 22px;
    font-weight: 500;
}

.summary-line-ct {
    width: 100%;
    height: 2px;
    background: #111;
    margin: 10px 0 30px;
}

.summary-row-ct {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

.summary-total-ct {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    padding: 20px 0;
    font-weight: bold;
}

.summary-note-ct {
    color: #777;
    font-size: 14px;
    margin: 20px 0;
}

.checkout-btn-ct {
    width: 100%;
    padding: 15px;
    background: #222;
    color: white;
    border: none;
    font-size: 14px;
    margin-bottom: 12px;
    cursor: pointer;
}

.back-btn-ct {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid #ccc;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
    .main-wrapper-ct {
        padding: 20px;
    }

    .cart-layout-ct {
        flex-direction: column;
    }

    .cart-left-ct,
    .cart-right-ct {
        width: 100%;
    }

    .cart-item-ct {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cart-head-row-ct {
        display: none;
    }
}
