.cart-wrap { padding: 36px 0 72px; }
  .cart-grid { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
  @media (max-width: 991px) { .cart-grid { grid-template-columns: 1fr; } }

  .cart-card {
    background: var(--white); border-radius: var(--r);
    border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden;
  }
  .cart-card-head {
    padding: 14px 20px; background: var(--surface);
    border-bottom: 1px solid var(--border);
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--muted); display: flex; align-items: center; gap: 8px;
  }

  .cart-item {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px; border-bottom: 1px solid var(--border);
    transition: background var(--t);
  }
  .cart-item:last-child { border-bottom: none; }
  .cart-item:hover { background: #FAFBFC; }
  .cart-thumb {
    width: 68px; height: 68px; border-radius: var(--r-sm);
    object-fit: contain; background: var(--surface);
    border: 1px solid var(--border); padding: 4px; flex-shrink: 0;
  }
  .cart-thumb-placeholder {
    width: 68px; height: 68px; border-radius: var(--r-sm);
    background: var(--surface); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: #CBD5E1; font-size: 1.4rem; flex-shrink: 0;
  }
  .cart-info { flex: 1; min-width: 0; }
  .cart-name {
    font-weight: 700; font-size: .875rem; color: var(--dark);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px;
  }
  .cart-var { font-size: .75rem; color: var(--muted); margin-bottom: 6px; }
  .cart-price { font-size: .875rem; font-weight: 700; color: var(--accent); }

  .qty-mini { display: flex; align-items: stretch; gap: 0; }
  .qty-mini-btn {
    width: 30px; height: 30px; border: 1.5px solid var(--border);
    background: var(--surface); color: var(--text);
    font-size: .95rem; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s; flex-shrink: 0;
  }
  .qty-mini-btn:first-child { border-radius: var(--r-sm) 0 0 var(--r-sm); }
  .qty-mini-btn:last-child  { border-radius: 0 var(--r-sm) var(--r-sm) 0; border-left: none; }
  .qty-mini-btn:hover { background: var(--brand-light); border-color: var(--brand-border); }
  .qty-mini-val {
    width: 38px; border: 1.5px solid var(--border); border-left: none; border-right: none;
    text-align: center; font-weight: 700; font-size: .85rem; outline: none;
    font-family: 'Inter', sans-serif; background: var(--white); color: var(--text);
  }

  .btn-remove {
    background: none; border: none; color: var(--muted); cursor: pointer;
    padding: 6px; border-radius: var(--r-sm); transition: color var(--t), background var(--t);
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  }
  .btn-remove:hover { color: var(--danger); background: #FEE2E2; }

  .summary-card {
    background: var(--white); border-radius: var(--r);
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
    padding: 22px; position: sticky; top: 84px;
  }
  .summary-title {
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--muted); margin-bottom: 18px;
    padding-bottom: 12px; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 7px;
  }
  .summary-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: .875rem; }
  .summary-row .lbl { color: var(--muted); }
  .summary-row .val { font-weight: 600; }
  .summary-total {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 2px solid var(--border); padding-top: 14px; margin-top: 6px;
    font-weight: 800; font-size: 1.05rem; color: var(--dark);
  }
  .summary-total .amount { color: var(--accent); font-size: 1.2rem; }
  .btn-checkout {
    display: block; width: 100%; background: var(--brand); color: #fff; border: none;
    border-radius: var(--r-full); padding: 14px; font-size: .925rem; font-weight: 700;
    cursor: pointer; font-family: 'Inter', sans-serif; text-align: center; text-decoration: none;
    transition: background var(--t), transform var(--t), box-shadow var(--t);
    margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  .btn-checkout:hover {
    background: var(--brand-mid); color: #fff; transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(0,95,115,.3);
  }
  .trust-row { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
  .trust-row span { font-size: .75rem; color: var(--muted); display: flex; align-items: center; gap: 7px; }
