.cart-page { background: #070b14; color: #e8eef8; min-height: 100vh; margin: 0; }
.cart-wrap { width: min(36rem, calc(100% - 2rem)); margin: 2.4rem auto 4rem; }
.cart-wrap h1 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.4rem;
}
.cart-lede, .cart-empty { color: #9aa6b8; }
.cart-list { list-style: none; margin: 1.2rem 0; padding: 0; }
.cart-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(212, 175, 85, 0.22);
}
.cart-list a { color: #e4c878; }
.cart-list .owned { color: #8fd18f; font-size: 0.85rem; }
.cart-remove {
  background: none;
  border: 0;
  color: #9aa6b8;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.cart-foot { display: flex; flex-wrap: wrap; gap: 0.8rem 1.1rem; align-items: center; margin-top: 1.2rem; }
.cart-total { margin: 0; font-weight: 600; }
.cart-foot .buy-btn {
  display: inline-block;
  padding: 0.65rem 1.1rem;
  background: linear-gradient(180deg, #d4af55, #b58a2c);
  color: #1a1306;
  text-decoration: none;
  font-weight: 700;
  border-radius: 3px;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}
.cart-clear {
  background: none;
  border: 0;
  color: #9aa6b8;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
}
.hidden { display: none !important; }
.nav-cart [data-cart-count]:not([hidden]) {
  display: inline-block;
  min-width: 1.15rem;
  margin-left: 0.25rem;
  padding: 0 0.28rem;
  border-radius: 99px;
  background: #d4af55;
  color: #1a1306;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}
