.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100dvh;
  background: #1e2637;
  border-left: 1px solid #2a3347;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #2a3347;
}
.cart-close { border: 0; background: transparent; color: #f0f2f7; font-size: 2rem; line-height: 1; cursor: pointer; }
.cart-body { padding: 1rem; overflow: auto; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 0.8rem; align-items: center; background: #161b26; border: 1px solid #2a3347; border-radius: 12px; padding: 0.6rem; }
.cart-item img { width: 72px; height: 72px; object-fit: cover; }
.cart-price { font-weight: 600; }
.cart-subtotal { display: flex; justify-content: space-between; margin: 1rem 0; font-weight: 600; }
.cart-trust { color: #8891a6; font-size: 0.9rem; }
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 35;
}
.cart-empty { color: #8891a6; }
