/* Ana renk tanımlamaları */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #34495e;
  --accent-color: #e74c3c;
  --text-color: #2c3e50;
  --light-bg: #ecf0f1;
}

/* Genel stil resetleri */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fiyat bilgileri */
.product-price-info {
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-original {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}

.price-current {
  font-size: 16px;
  color: #e74c3c;
  font-weight: 600;
}

/* Kampanya rozeti stilleri */
.campaign-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 8px 12px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
  z-index: 10;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.campaign-badge::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  border-radius: 25px;
  z-index: -1;
}