/* ==========================================
   CART PAGE
   ========================================== */
.cart-page {
    padding: 40px 0 60px;
    background: #f5f5f5;
    min-height: 60vh;
}

.cart-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
}

.cart-layout {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.cart-items {
    flex: 1 1 auto;
    min-width: 0;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    overflow: hidden;
}

.cart-summary {
    flex: 0 0 300px;
    max-width: 300px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 20px;
    position: sticky;
    top: 20px;
}

    .cart-summary h3 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 2px solid #eee;
    }

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: .95rem;
    color: #444;
}

.cart-summary-total {
    border-top: 1px solid #eee;
    margin-top: 8px;
    padding-top: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
}

.cart-checkout-btn {
    display: block;
    width: 100%;
    height: 48px;
    margin-top: 16px;
    border-radius: 4px;
    text-decoration: none;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

    .cart-table th {
        text-align: left;
        font-size: .85rem;
        text-transform: uppercase;
        color: #888;
        padding: 14px 16px;
        border-bottom: 2px solid #eee;
    }

    .cart-table td {
        padding: 16px;
        border-bottom: 1px solid #f2f2f2;
        vertical-align: middle;
    }

    .cart-table tr:last-child td {
        border-bottom: none;
    }

.cart-product-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .cart-product-cell img {
        width: 64px;
        height: 64px;
        object-fit: contain;
        border: 1px solid #ececec;
        border-radius: 6px;
        padding: 4px;
        background: #fff;
    }

.cart-item-name {
    font-weight: 600;
    color: #222;
}

.cart-item-sku {
    font-size: .8rem;
    color: #999;
    margin-top: 2px;
}

.cart-qty-input {
    width: 70px;
}

.cart-line-subtotal {
    font-weight: 700;
}

.cart-remove-btn {
    border: none;
    background: transparent;
    color: #c62828;
    font-size: 1.05rem;
    cursor: pointer;
    padding: 6px;
}

    .cart-remove-btn:hover {
        color: #8e0000;
    }

@media (max-width: 767px) {
    .cart-layout {
        flex-direction: column;
    }

    .cart-summary {
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
        position: static;
    }

    .cart-table {
        display: block;
        overflow-x: auto;
    }
}