.emp-cart {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 720px;
}

.emp-cart__loading {
    padding: 56px 20px;
    text-align: center;
    color: var(--emp-muted);
    font-size: 14px;
}

/* ── Empty state ─────────────────────────────────────────────── */
.emp-cart__empty {
    text-align: center;
    padding: 64px 24px;
    background: var(--emp-bg-card);
    border: 1px solid var(--emp-border);
    border-radius: var(--emp-r-card);
    max-width: 420px;
    margin: 0 auto;
}
.emp-cart__empty-icon { color: var(--emp-border); margin-bottom: 16px; }
.emp-cart__empty-text { font-size: 15px; color: var(--emp-muted); margin: 0 0 22px; }

/* ── Banner ──────────────────────────────────────────────────── */
.emp-cart__banner {
    padding: 16px 20px;
    background: var(--emp-teal-light);
    border: 1px solid var(--emp-border);
    border-radius: var(--emp-r-card);
    color: var(--emp-teal);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 500;
}

/* ── Brand group ─────────────────────────────────────────────── */
.emp-cart__brand {
    background: var(--emp-bg-card);
    border: 1px solid var(--emp-border);
    border-radius: var(--emp-r-card);
    overflow: hidden;
}
.emp-cart__brand-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--emp-cream);
    border-bottom: 1px solid var(--emp-border);
}
.emp-cart__brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emp-coral);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}
.emp-cart__brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.emp-cart__brand-name {
    font-weight: 700;
    color: var(--emp-charcoal);
    text-decoration: none;
    font-size: 15px;
}
.emp-cart__brand-name:hover { color: var(--emp-coral); }
.emp-cart__brand-ship {
    margin-left: auto;
    white-space: nowrap;
}

/* ── Line item ───────────────────────────────────────────────── */
.emp-cart__items { display: flex; flex-direction: column; }
.emp-cart__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--emp-border);
}
.emp-cart__row:last-child { border-bottom: none; }
.emp-cart__main {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
}
.emp-cart__actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}
.emp-cart__thumb { flex-shrink: 0; display: block; }
.emp-cart__thumb img {
    width: 68px;
    height: 68px;
    border-radius: var(--emp-r-input);
    object-fit: cover;
    border: 1px solid var(--emp-border);
}
.emp-cart__body { flex: 1; min-width: 0; }
.emp-cart__title {
    display: block;
    font-weight: 600;
    color: var(--emp-charcoal);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
}
.emp-cart__title:hover { color: var(--emp-coral); }
.emp-cart__attrs { display: flex; gap: 8px; flex-wrap: wrap; }
.emp-cart__attr {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--emp-muted);
    background: var(--emp-cream);
    padding: 3px 9px;
    border-radius: var(--emp-r-badge);
}
.emp-cart__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.emp-cart__sep {
    color: var(--emp-border);
    font-weight: 700;
}
.emp-cart__priceblock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.emp-cart__reg {
    font-size: 13px;
    color: var(--emp-muted);
    text-decoration: line-through;
}
.emp-cart__sale {
    font-weight: 700;
    color: var(--emp-charcoal);
    font-size: 14px;
}
.emp-cart__disc {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: var(--emp-coral);
    padding: 2px 7px;
    border-radius: var(--emp-r-badge);
    line-height: 1.4;
}

/* ── Qty stepper ─────────────────────────────────────────────── */
.emp-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--emp-border);
    border-radius: var(--emp-r-badge);
    overflow: hidden;
    background: var(--emp-bg-card);
}
.emp-stepper__btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--emp-charcoal);
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.emp-stepper__btn:hover:not(:disabled) { background: var(--emp-coral-light); color: var(--emp-coral); }
.emp-stepper__btn:disabled { opacity: 0.5; cursor: default; }
.emp-stepper__val {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    color: var(--emp-charcoal);
}

/* ── Remove ──────────────────────────────────────────────────── */
.emp-cart__remove {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--emp-muted);
    border-radius: var(--emp-r-badge);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.emp-cart__remove:hover { background: var(--emp-coral-light); color: var(--emp-coral); }

/* ── Coupon ──────────────────────────────────────────────────── */
.emp-cart__coupons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.emp-cart__coupon-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #2E9E6B;
    background: var(--emp-bg-card);
    border: 1px solid var(--emp-border);
    border-radius: var(--emp-r-badge);
    padding: 4px 6px 4px 12px;
}
.emp-cart__coupon-x {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--emp-muted);
    border-radius: 50%;
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    transition: background 0.15s, color 0.15s;
}
.emp-cart__coupon-x:hover { background: var(--emp-coral-light); color: var(--emp-coral); }

.emp-cart__coupon {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
.emp-cart__coupon-input {
    flex: 1;
    min-width: 0;
    border: 1.5px solid var(--emp-border);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 13px;
    background: var(--emp-bg-card);
    color: var(--emp-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-family: inherit;
    outline: none;
}
.emp-cart__coupon-input::placeholder { color: var(--emp-muted); text-transform: none; letter-spacing: 0; }
.emp-cart__coupon-input:focus { border-color: var(--emp-charcoal); }
.emp-cart__coupon-btn {
    flex-shrink: 0;
    border: none;
    background: var(--emp-charcoal);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-radius: 12px;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.15s;
}
.emp-cart__coupon-btn:hover:not(:disabled) { background: #000; }
.emp-cart__coupon-btn:disabled { opacity: 0.6; cursor: default; }
.emp-cart__coupon-msg {
    font-size: 12px;
    color: var(--emp-coral);
    margin-bottom: 12px;
    font-weight: 500;
}
.emp-cart__coupon-msg[hidden] { display: none; }

/* ── Summary + checkout ──────────────────────────────────────── */
.emp-cart__summary {
    background: var(--emp-bg-card);
    border: 1px solid var(--emp-border);
    border-radius: 16px;
    padding: 14px 16px;
}
.emp-cart__summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: var(--emp-charcoal);
    padding: 5px 0;
}
.emp-cart__summary-label { color: var(--emp-muted); }
.emp-cart__summary-row--disc span:last-child { color: #2E9E6B; font-weight: 700; }
.emp-cart__free { color: #2E9E6B; font-weight: 800; }
.emp-cart__summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 6px;
    padding-top: 11px;
    border-top: 1px solid var(--emp-border);
}
.emp-cart__summary-total span:first-child { font-weight: 700; font-size: 16px; color: var(--emp-charcoal); }
.emp-cart__amt { color: var(--emp-coral); font-size: 18px; font-weight: 800; }
.emp-cart__checkout {
    margin-top: 14px;
    width: 100%;
    justify-content: center;
}