/* SOLD-OUT RIBBON STYLES */
.sold-out-ribbon {
  position: absolute;
  top: 20px;
  right: -10px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 8px 20px;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(15deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 10;
  border-radius: 4px;
}

.sold-out-ribbon::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  border-top: 15px solid #a93226;
  border-left: 8px solid transparent;
  border-bottom: 15px solid #a93226;
}

.sold-out-ribbon::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 0;
  border-top: 15px solid #a93226;
  border-right: 8px solid transparent;
  border-bottom: 15px solid #a93226;
}

/* Alternative: Simple overlay style */
.sold-out-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(231, 76, 60, 0.95);
  color: white;
  padding: 6px 12px;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

/* Generic container for sold-out overlay - ensures proper positioning */
.sold-out-container {
  position: relative;
  display: inline-block;
}