/* ── Cart Breadcrumb ── */
.cart-breadcrumb {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background-color: var(--nalltech-blue);
    padding: 14px 0;
    text-align: right;
    margin-bottom: 0;
}
.cart-breadcrumb p { color: var(--nalltech-lightblue); margin-bottom: 0; }
.cart-breadcrumb a { color: var(--nalltech-lightblue); text-decoration: none; }
.cart-breadcrumb a:hover { color: #fff; }
.cart-breadcrumb span { margin: 0 8px; color: rgba(255,255,255,0.5); }

/* ── Cart Page Header ── */
.cart-page-header {
    padding: 60px 0;
    background-color: var(--nalltech-blue);
    color: #fff;
}
.cart-page-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nalltech-brightpink);
    margin-bottom: 12px;
}
.cart-page-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 0;
}

/* ── Cart Body ── */
.cart-body { padding: 3rem 0 4rem; }

/* ── Alert ── */
.cart-alert-success {
    background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46;
    padding: 0.75rem 1.25rem; border-radius: 8px; margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.5rem;
}

/* ── Empty State ── */
.cart-empty { text-align: center; padding: 4rem 0; }
.cart-empty-icon { font-size: 4rem; color: #ddd; margin-bottom: 1rem; }
.cart-empty h2 { font-size: 1.4rem; color: #333; margin-bottom: 0.5rem; }
.cart-empty p { color: #888; margin-bottom: 1.5rem; }

/* ── Layout ── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 1.75rem; align-items: start; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }

/* ── Items Panel ── */
.cart-items-panel { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; overflow: hidden; }
.cart-items-header {
    display: grid; grid-template-columns: 1fr 100px 120px 110px 44px;
    background: #f8f8f8; padding: 1.1rem 1.25rem;
    font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #888;
    border-bottom: 1px solid #eee;
}
.cart-item-row {
    display: grid; grid-template-columns: 1fr 100px 120px 110px 44px;
    padding: 1rem 1.25rem; border-bottom: 1px solid #f0f0f0; align-items: center;
}
.cart-item-row:last-child { border-bottom: none; }
.cart-item-code { font-size: 0.75rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.04em; }
.cart-item-name { font-size: 0.95rem; font-weight: 600; color: #1a1a1a; margin: 0.1rem 0; }
.cart-item-vendor { font-size: 0.78rem; color: #aaa; }
.cart-item-price { font-size: 0.95rem; color: #444; }
.cart-item-subtotal { font-size: 1rem; font-weight: 700; color: #1a1a1a; }

/* ── Qty Stepper ── */
.qty-stepper { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn {
    width: 28px; height: 28px; background: #f3f3f3; border: 1px solid #ddd;
    border-radius: 6px; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
}
.qty-btn:hover { background: #e5e5e5; }
.qty-value { font-weight: 600; min-width: 24px; text-align: center; }

/* ── Remove Button ── */
.btn-remove {
    background: none; border: none; color: #ccc; cursor: pointer; font-size: 1.1rem;
    padding: 4px; border-radius: 6px; transition: color 0.15s;
}
.btn-remove:hover { color: #e74c3c; }

/* ── Summary Panel ── */
.cart-summary-card {
    border-radius: 12px;
    position: sticky; top: 90px;
    border: 1px solid #e8e8e8 !important;
    overflow: hidden;
}
.cart-summary-title { font-size: 1.1rem; font-weight: 700; color: #1a1a1a; }
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 0.75rem; font-size: 0.9rem; color: #555; }
.cart-summary-note span:last-child { font-size: 0.8rem; color: #aaa; }
.cart-summary-divider { border-top: 1px solid #f0f0f0; margin: 1rem 0; }
.cart-summary-total { font-size: 1.1rem; font-weight: 700; color: #1a1a1a; }

/* ── CTA Buttons ── */
.btn-checkout-primary {
    display: block; text-align: center; background: var(--nalltech-blue); color: #fff;
    padding: 0.8rem; border-radius: 8px; font-weight: 600; text-decoration: none;
    transition: background 0.2s; font-size: 0.95rem; font-family: inherit;
}
.btn-checkout-primary:hover { background: #1e4a5a; color: #fff; }
.btn-continue-shopping {
    display: block; text-align: center; color: #888; font-size: 0.85rem;
    text-decoration: none; padding: 0.35rem; transition: color 0.2s;
}
.btn-continue-shopping:hover { color: #333; }
.btn-shop-primary {
    display: inline-block; background: #1a1a1a; color: #fff; padding: 0.7rem 1.5rem;
    border-radius: 8px; font-weight: 600; text-decoration: none; transition: background 0.2s;
}
.btn-shop-primary:hover { background: #333; color: #fff; }

.cart-payment-info { margin-top: 1.25rem; background: #f9f9f9; border-radius: 8px; padding: 0.85rem; }
.cart-payment-info p { font-size: 0.78rem; color: #666; margin: 0; line-height: 1.6; }
