.one-of-one-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2c1810, #5d3a1a);
  color: #f4e9d4;
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  border: 1px solid #f4e9d4;
}

.sold-state-tag {
  display: block;
  margin-top: 8px;
  padding: 6px 10px;
  background: #f4e9d4;
  color: #2c1810;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  font-style: italic;
  border-left: 3px solid #5d3a1a;
}

.sold-state-tag::before {
  content: "✓ ";
  font-weight: bold;
}

.first-edition-tag {
  display: inline-block;
  background: #5d3a1a;
  color: #f4e9d4;
  font-family: 'Courier New', monospace;
  font-size: 0.65rem;
  padding: 3px 8px;
  margin-left: 6px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

/* Bundle add-on offer (tee + matching wood print) shown on purchase page */
.bundle-offer {
  margin: 1em 0;
  padding: 1em;
  background: #f4e9d4;
  border: 2px dashed #5d3a1a;
  border-radius: 4px;
}
.bundle-strikethrough {
  text-decoration: line-through;
  color: #999;
  margin: 0 0.5em;
}

/* Animated "energy" border for unsold drop/edition pieces. Subtle pulse using
   the brand palette (#5d3a1a base, #d4a574 accent) — draws the eye without
   being distracting. Only applied via .drop-edition-card on unsold edition
   pieces; sold pieces use the muted .sold styling instead. */
@keyframes drop-edition-pulse {
  0%, 100% { box-shadow: 0 0 0 2px #5d3a1a, 0 0 12px 2px rgba(212, 165, 116, 0.4); }
  50%      { box-shadow: 0 0 0 2px #d4a574, 0 0 20px 4px rgba(212, 165, 116, 0.7); }
}
.drop-edition-card {
  position: relative;
  animation: drop-edition-pulse 3s ease-in-out infinite;
  border-radius: 6px;
}
