body {
    background: #f1f1f2;
}

.cart-container {
    max-width: 1200px;
    margin: 30px auto;
}

.cart-wrapper {
    display: flex;
    gap: 20px;
}

/* LEFT SIDE */
.cart-items {
    flex: 3;
    background: #fff;
    border-radius: 4px;
    padding: 0;
}

/* Cart Header */
.cart-header {
    font-size: 20px;
    font-weight: 600;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

/* Cart Item */
.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cart-left {
    display: flex;
    gap: 20px;
}

.cart-image {
    width: 80px;
    height: auto;
}

.cart-info h3 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
}

.stock {
    color: #008000;
    font-size: 13px;
    margin-bottom: 8px;
}

.remove-btn {
    color: #f68b1e;
    font-size: 13px;
    text-decoration: none;
}

.remove-btn:hover {
    text-decoration: underline;
}

/* RIGHT SIDE */
.cart-right {
    text-align: right;
    min-width: 150px;
}

.price-section {
    position: relative;
}

.new-price {
    font-weight: 700;
    font-size: 18px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
}

.discount-badge {
    position: absolute;
    right: 0;
    top: 0;
    background: #fef3e9;
    color: #f68b1e;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 3px;
}

/* Quantity */
.cart-qty {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    background: #f68b1e;
    color: #fff;
    text-align: center;
    line-height: 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.qty-number {
    font-size: 15px;
}

/* SUMMARY */
.cart-summary {
    flex: 1;
    background: #fff;
    border-radius: 4px;
    padding: 20px;
    height: fit-content;
}

.summary-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.checkout-btn {
    display: block;
    background: #f68b1e;
    color: #fff;
    padding: 12px;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
}

.checkout-btn:hover {
    opacity: 0.9;
}

/* ===== Empty Cart (Framework Styled) ===== */

.empty-cart {
    max-width: 600px;
    margin: 80px auto;
    background: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.empty-cart p {
    font-size: 20px;
    font-weight: 600;
    color: #0d2d5e; /* same navy from framework */
    margin-bottom: 20px;
}

.empty-cart a {
    display: inline-block;
    padding: 10px 20px;
    background: #3498db; /* same primary blue */
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: 0.3s;
}

.empty-cart a:hover {
    background: #217dbb;
}