.catalog-cart-link {
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:42px;
  padding:0 14px;
  border:1px solid rgba(255,103,27,.5);
  color:#fff;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.catalog-cart-link [data-cart-count] {
  display:grid;
  min-width:22px;
  height:22px;
  place-items:center;
  padding:0 5px;
  border-radius:999px;
  background:#ff671b;
  color:#1c0801;
  font-size:.68rem;
}
.catalog-cart-link [data-cart-count][hidden] { display:none; }
.tile-cart-action { width:calc(100% - 44px); margin:0 22px 22px; border:0; cursor:pointer; }
.tile-product-link { display:flex; flex:1; flex-direction:column; }
.cart-page { width:min(1040px,calc(100% - 40px)); }
.cart-head { display:flex; justify-content:space-between; gap:24px; align-items:end; margin-bottom:32px; }
.cart-head .catalog-intro { margin:14px 0 0; }
.cart-list { display:grid; gap:10px; }
.cart-item {
  display:grid;
  grid-template-columns:130px minmax(0,1fr) auto auto;
  gap:18px;
  align-items:center;
  padding:16px;
  border:1px solid rgba(255,255,255,.13);
  background:#111113;
}
.cart-item img { width:130px; height:110px; object-fit:contain; background:#0b0b0c; }
.cart-item h2 { margin:5px 0; font-size:1.8rem; }
.cart-item p { margin:0; color:#aaa49c; font-size:.8rem; }
.cart-quantity { display:flex; align-items:center; gap:8px; }
.cart-quantity button,
.cart-remove {
  min-width:38px;
  height:38px;
  border:1px solid rgba(255,255,255,.16);
  background:#171719;
  color:#fff;
  cursor:pointer;
}
.cart-quantity input {
  width:52px;
  height:38px;
  border:1px solid rgba(255,255,255,.16);
  background:#0e0e10;
  color:#fff;
  text-align:center;
  font-weight:800;
}
.cart-line-total { min-width:120px; color:#ff671b; text-align:right; font-weight:1000; }
.cart-remove { grid-column:4; min-width:auto; padding:0 12px; color:#d9d4cc; }
.cart-summary {
  display:grid;
  gap:14px;
  margin-top:20px;
  padding:22px;
  border:1px solid rgba(255,103,27,.45);
  background:linear-gradient(135deg,rgba(255,103,27,.11),#101012);
}
.cart-summary-row { display:flex; justify-content:space-between; gap:20px; align-items:center; }
.cart-summary-row strong { color:#ff671b; font-size:1.35rem; }
.cart-actions { display:flex; flex-wrap:wrap; gap:10px; }
.cart-sync {
  display:grid;
  gap:10px;
  margin-top:20px;
  padding:18px;
  border:1px solid rgba(255,255,255,.12);
  color:#aaa49c;
  font-size:.82rem;
  line-height:1.55;
}
.cart-sync label { display:flex; gap:10px; align-items:flex-start; color:#d9d4cc; }
.cart-empty { padding:44px 24px; border:1px solid rgba(255,255,255,.12); text-align:center; color:#aaa49c; }
.checkout-cart-products { display:grid; gap:10px; }
.checkout-cart-product { display:grid; grid-template-columns:86px 1fr auto; gap:14px; align-items:center; }
.checkout-cart-product img { width:86px; height:76px; }
.checkout-cart-product strong { font-size:1.25rem; }
.checkout-cart-product em { color:#ff671b; font-style:normal; font-weight:900; }
@media(max-width:760px) {
  .catalog-cart-link { margin-left:auto; }
  .cart-head { display:grid; align-items:start; }
  .cart-item { grid-template-columns:90px 1fr; }
  .cart-item img { width:90px; height:90px; }
  .cart-quantity,.cart-line-total,.cart-remove { grid-column:2; justify-self:start; text-align:left; }
  .cart-actions { display:grid; }
  .checkout-cart-product { grid-template-columns:70px 1fr; }
  .checkout-cart-product em { grid-column:2; }
}
