/* === BRASOV.TATTOO PROMOTIONS SECTION - EPIC GLASSMORPHISM DESIGN === */
/* 🎁 SPECIAL OFFERS & PROMOTIONS - ULTRA PREMIUM STYLING */

/* ======================================================================================== */
/* 🎁 PROMOTIONS SECTION BASE */
/* ======================================================================================== */

.promotions-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem 4rem;
  min-height: 100vh;
  
  /* 🌟 EPIC Background */
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 149, 0, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 45, 146, 0.10) 0%, transparent 50%),
    var(--glass-premium);
  
  backdrop-filter: blur(35px) saturate(200%) brightness(125%);
  border: 1px solid rgba(255, 149, 0, 0.15);
  
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 15px 50px rgba(0, 0, 0, 0.15),
    0 0 100px rgba(255, 149, 0, 0.1);
}

.promotions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 149, 0, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 75% 75%, rgba(255, 45, 146, 0.06) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
  animation: promotionsBackgroundPulse 20s ease-in-out infinite;
}

@keyframes promotionsBackgroundPulse {
  0%, 100% { 
    opacity: 0.7; 
    transform: scale(1) rotate(0deg);
  }
  50% { 
    opacity: 1; 
    transform: scale(1.02) rotate(1deg);
  }
}

/* ======================================================================================== */
/* 🎯 SECTION TITLE */
/* ======================================================================================== */

.promotions-section .section-title h1 {
  background: linear-gradient(
    135deg,
    var(--accent-orange) 0%,
    var(--accent-red) 25%,
    var(--accent-pink) 50%,
    var(--accent-gold) 75%,
    var(--accent-orange) 100%
  );
  background-size: 400% 400%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: promotionsTitleGradient 6s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(255, 149, 0, 0.5));
}

@keyframes promotionsTitleGradient {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 25%; }
  50% { background-position: 200% 50%; }
  75% { background-position: 100% 75%; }
}

/* ======================================================================================== */
/* 🔄 LOADING STATES */
/* ======================================================================================== */

.promotions-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 4rem 2rem;
  color: var(--text-secondary);
}

.promotions-loading .loading-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: promotionsTextShimmer 3s ease-in-out infinite;
}

@keyframes promotionsTextShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.promotions-loading .loading-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: promotionsIconSpin 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 149, 0, 0.6));
}

@keyframes promotionsIconSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
}

/* ======================================================================================== */
/* 🎁 PROMOTIONS CONTAINER */
/* ======================================================================================== */

.promotions-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ======================================================================================== */
/* 🎫 PROMOTION CARDS */
/* ======================================================================================== */

.promotion-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-epic);
  cursor: pointer;
  
  /* 🌟 EPIC GLASSMORPHISM */
  background: var(--glass-ultra);
  backdrop-filter: blur(40px) saturate(220%) brightness(130%);
  border: 2px solid rgba(255, 149, 0, 0.2);
  
  /* ⚡ EPIC SHADOWS */
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 15px 45px rgba(0, 0, 0, 0.15),
    0 0 60px rgba(255, 149, 0, 0.1);
  
  /* 🎨 Transform */
  transform: translateY(0) scale(1) rotateX(0deg);
}

.promotion-card:hover {
  transform: translateY(-15px) scale(1.02) rotateX(2deg);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(50px) saturate(250%) brightness(140%);
  border-color: rgba(255, 149, 0, 0.4);
  
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 25px 60px rgba(0, 0, 0, 0.2),
    0 0 80px rgba(255, 149, 0, 0.3),
    0 0 120px rgba(255, 45, 146, 0.2);
}

/* 🌟 PROMOTION CARD SHIMMER */
.promotion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  transition: left var(--transition-epic);
  z-index: 2;
}

.promotion-card:hover::before {
  left: 100%;
}

/* 🔥 FEATURED PROMOTION */
.promotion-card.featured {
  border: 2px solid rgba(255, 45, 146, 0.4);
  background: rgba(255, 45, 146, 0.1);
  
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 20px 50px rgba(0, 0, 0, 0.2),
    0 0 80px rgba(255, 45, 146, 0.4),
    0 0 120px rgba(255, 149, 0, 0.2);
}

.promotion-card.featured::after {
  content: '⭐ FEATURED';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
  animation: featuredBadgePulse 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(255, 45, 146, 0.4);
}

@keyframes featuredBadgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ======================================================================================== */
/* 🖼️ PROMOTION IMAGE */
/* ======================================================================================== */

.promotion-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.promotion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-smooth);
  filter: brightness(0.9) contrast(1.2) saturate(1.2);
}

.promotion-card:hover .promotion-image img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.3) saturate(1.3);
}

.promotion-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg, 
    rgba(255, 149, 0, 0.2), 
    transparent 40%, 
    rgba(255, 45, 146, 0.15)
  );
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.promotion-card:hover .promotion-image::after {
  opacity: 1;
}

/* 💰 DISCOUNT BADGE */
.discount-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
  animation: discountBadgePulse 3s ease-in-out infinite;
  box-shadow: 
    0 4px 15px rgba(255, 55, 95, 0.5),
    0 0 25px rgba(255, 149, 0, 0.3);
}

@keyframes discountBadgePulse {
  0%, 100% { 
    transform: scale(1) rotate(0deg); 
    box-shadow: 0 6px 20px rgba(255, 55, 95, 0.5);
  }
  50% { 
    transform: scale(1.1) rotate(2deg); 
    box-shadow: 0 10px 30px rgba(255, 55, 95, 0.7);
  }
}

/* ======================================================================================== */
/* 📝 PROMOTION CONTENT */
/* ======================================================================================== */

.promotion-content {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.promotion-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  animation: promotionTitleGlow 4s ease-in-out infinite;
}

@keyframes promotionTitleGlow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 149, 0, 0.3)); }
  50% { filter: drop-shadow(0 0 20px rgba(255, 45, 146, 0.4)); }
}

.promotion-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.promotion-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* ======================================================================================== */
/* 💰 PRICING SECTION */
/* ======================================================================================== */

.promotion-pricing {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.original-price {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 600;
}

.discounted-price {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-electric));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(50, 215, 75, 0.4);
}

.price-savings {
  background: rgba(50, 215, 75, 0.15);
  color: var(--accent-green);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(50, 215, 75, 0.3);
}

/* ======================================================================================== */
/* 🎫 PROMO CODE */
/* ======================================================================================== */

.promo-code-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.promo-code-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.promo-code {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--accent-electric);
  background: rgba(0, 212, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 2px dashed rgba(0, 212, 255, 0.3);
  letter-spacing: 2px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.promo-code:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.5);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* ======================================================================================== */
/* 📅 VALIDITY PERIOD */
/* ======================================================================================== */

.promotion-validity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.validity-icon {
  font-size: 1rem;
}

.validity-dates {
  font-weight: 600;
}

.validity-status {
  margin-left: auto;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.validity-status.active {
  background: rgba(50, 215, 75, 0.15);
  color: var(--accent-green);
  border: 1px solid rgba(50, 215, 75, 0.3);
}

.validity-status.expired {
  background: rgba(255, 55, 95, 0.15);
  color: var(--accent-red);
  border: 1px solid rgba(255, 55, 95, 0.3);
}

.validity-status.upcoming {
  background: rgba(0, 212, 255, 0.15);
  color: var(--accent-electric);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

/* ======================================================================================== */
/* 🔗 SOCIAL LINKS */
/* ======================================================================================== */

.promotion-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all var(--transition-bounce);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.social-link.instagram {
  background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
  color: white;
  box-shadow: 0 4px 15px rgba(196, 53, 132, 0.4);
}

.social-link.facebook {
  background: linear-gradient(135deg, #1877F2, #42A5F5);
  color: white;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-link.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: left var(--transition-smooth);
}

.social-link:hover::before {
  left: 100%;
}

/* ======================================================================================== */
/* 🎯 CTA BUTTON */
/* ======================================================================================== */

.promotion-cta {
  width: 100%;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
  
  box-shadow: 
    0 8px 25px rgba(255, 149, 0, 0.4),
    0 0 40px rgba(255, 45, 146, 0.2);
}

.promotion-cta:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-red));
  
  box-shadow: 
    0 12px 35px rgba(255, 45, 146, 0.5),
    0 0 60px rgba(255, 55, 95, 0.3);
}

.promotion-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.promotion-cta:hover::before {
  left: 100%;
}

/* ======================================================================================== */
/* 📱 EMPTY STATE */
/* ======================================================================================== */

.promotions-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-muted);
}

.empty-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  opacity: 0.7;
  animation: emptyIconFloat 3s ease-in-out infinite;
}

@keyframes emptyIconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.promotions-empty h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.promotions-empty p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ======================================================================================== */
/* 📱 RESPONSIVE DESIGN */
/* ======================================================================================== */

@media (max-width: 768px) {
  .promotions-section {
    padding: 3rem 1rem 2.5rem;
  }

  .promotions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .promotion-card {
    border-radius: var(--radius-lg);
  }

  .promotion-content {
    padding: 1.25rem;
  }

  .promotion-title {
    font-size: 1.3rem;
  }

  .promotion-image {
    height: 180px;
  }

  .promotion-pricing {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .discounted-price {
    font-size: 1.3rem;
  }

  .promotion-social {
    justify-content: center;
  }

  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .promotion-cta {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  .discount-badge {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .promotions-section {
    padding: 2rem 0.5rem 2rem;
  }

  .promotions-container {
    padding: 0 0.5rem;
  }

  .promotion-content {
    padding: 1rem;
  }

  .promotion-title {
    font-size: 1.3rem;
  }

  .promotion-image {
    height: 200px;
  }

  .discounted-price {
    font-size: 1.3rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .discount-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

/* ======================================================================================== */
/* 🎨 ANIMATION OPTIMIZATIONS */
/* ======================================================================================== */

.promotion-card,
.promotion-image img,
.social-link,
.promotion-cta {
  will-change: transform, filter;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* Performance optimization for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .promotion-card,
  .promotion-image img,
  .social-link,
  .promotion-cta,
  .discount-badge {
    animation: none !important;
    transition: none !important;
  }

  .promotion-card:hover {
    transform: none !important;
  }
}

/* High contrast accessibility */
@media (prefers-contrast: high) {
  .promotion-card {
    border-width: 3px;
    background: rgba(255, 255, 255, 0.25);
  }

  .promotion-title {
    color: var(--accent-orange);
    -webkit-text-fill-color: var(--accent-orange);
    background: none;
  }

  .discounted-price {
    color: var(--accent-green);
    -webkit-text-fill-color: var(--accent-green);
    background: none;
  }
}