.cart-page{padding:clamp(32px,6vw,64px) 24px;max-width:760px;margin:0 auto}
.cart-page__title{font-family:var(--font-display);font-size:clamp(1.6rem,4vw,2.2rem);font-weight:800;color:var(--text);margin-bottom:32px}
.cart-item{display:flex;gap:16px;padding:18px 0;border-bottom:1px solid var(--border-light);align-items:center}
.cart-item__image{width:80px;height:80px;border-radius:10px;overflow:hidden;background:var(--surface);flex-shrink:0}
.cart-item__image img{width:100%;height:100%;object-fit:cover}
.cart-item__details{flex:1;min-width:0}
.cart-item__title{font-size:1rem;font-weight:700;color:var(--text);margin-bottom:4px}
.cart-item__variant{font-size:0.82rem;color:var(--text-muted);margin-bottom:10px}
.cart-item__bottom{display:flex;align-items:center;justify-content:space-between;gap:16px}
.cart-item__quantity{display:flex;align-items:center;gap:8px}
.cart-item__qty-label{font-size:0.8rem;color:var(--text-soft)}
.cart-item__qty-input{width:56px;padding:6px 8px;border:1px solid var(--border);border-radius:8px;font-size:0.9rem;text-align:center}
.cart-item__price{font-weight:700;color:var(--text)}
.cart-item__remove{width:32px;height:32px;display:flex;align-items:center;justify-content:center;color:var(--text-muted);flex-shrink:0}
.cart-item__remove:hover{color:#c0392b}
.cart-promo{margin:24px 0}
.cart-promo__label{display:block;font-size:0.82rem;font-weight:600;color:var(--text-soft);margin-bottom:8px}
.cart-promo__row{display:flex;gap:10px}
.cart-promo__input{flex:1;padding:12px 14px;border:1px solid var(--border);border-radius:8px;font-size:0.9rem}
.cart-summary{background:var(--surface);border-radius:16px;padding:24px;margin-top:16px}
.cart-summary__row{display:flex;justify-content:space-between;font-size:1.1rem;font-weight:700;color:var(--text);margin-bottom:6px}
.cart-summary__note{font-size:0.78rem;color:var(--text-muted);margin-bottom:18px}
.cart-summary__update{width:100%;margin-bottom:10px}
.cart-summary__checkout{width:100%;display:flex;align-items:center;justify-content:center;gap:8px}
.cart-payments{margin-top:18px;text-align:center}
.cart-payments__label{display:block;font-size:0.72rem;color:var(--text-muted);margin-bottom:8px}
.cart-payments__icons{display:flex;justify-content:center;gap:8px}
.cart-payments__icon{font-size:0.7rem;font-weight:700;color:var(--text-soft);background:#fff;border:1px solid var(--border);padding:4px 10px;border-radius:6px}
.cart-trust{display:flex;flex-wrap:wrap;justify-content:center;gap:18px;margin-top:24px}
.cart-trust__item{display:flex;align-items:center;gap:6px;font-size:0.78rem;color:var(--text-soft)}
.cart-trust__item svg{color:var(--accent-hover)}
.cart-empty{display:flex;flex-direction:column;align-items:center;text-align:center;padding:80px 24px;color:var(--text-muted)}
.cart-empty__icon{margin-bottom:16px}
.cart-empty__title{font-family:var(--font-display);font-size:1.4rem;font-weight:700;color:var(--text);margin-bottom:8px}
.cart-empty__text{margin-bottom:24px}
.cart-empty__btn{display:inline-flex;align-items:center;gap:8px}
@media(max-width:600px){
  .cart-item{flex-wrap:wrap}
  .cart-item__bottom{flex-direction:column;align-items:flex-start;gap:10px}
}
