.cart-page { max-width: 720px; margin: 0 auto; padding: 40px 24px 80px; }

.cart-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cart-card-header {
  background: var(--grad);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-card-header h2 { font-size: 15px; font-weight: 600; }

#cartHeader {
  display: flex;
  align-items: center;
  gap: 10px;
}

#cartItems { padding: 0; }

.cart-card-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-card-footer-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cart-shop-link {
  display: inline-block;
  margin-top: 10px;
  padding: 7px 16px;
  background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--grad) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}

.cart-shop-link:hover {
  background: linear-gradient(var(--surface-2), var(--surface-2)) padding-box, var(--grad) border-box;
  color: var(--accent);
  transform: translateY(-1px);
}

.instructions-card {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.instructions-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.instructions-card p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 8px;
}

.instructions-card p:last-child { margin-bottom: 0; }
.instructions-card a { color: var(--accent); text-decoration: none; font-weight: 500; }
.instructions-card a:hover { text-decoration: underline; }
.instructions-card strong { color: var(--text); }
