/* ========== BLACK FRIDAY 2025 - BALANCED VERSION ========== */

/* ========== BANNER SECTION ========== */
.bf2025-banner-compact {
  position: relative;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(241,90,101,0.06) 0%, rgba(255,103,77,0.06) 100%);
  border-radius: 20px;
  margin: 28px 0;
  border: 2px solid rgba(241,90,101,0.12);
  overflow: hidden;
}

.bf2025-banner-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #f15a65, #ff674d);
}

.bf2025-compact-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header Section */
.bf2025-compact-header {
  text-align: center;
  margin-bottom: 24px;
}

.bf2025-compact-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f15a65, #ff674d);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: 0 3px 12px rgba(241,90,101,0.3);
  margin-bottom: 12px;
}

.bf2025-compact-headline {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
}

.bf2025-compact-headline strong {
  background: linear-gradient(135deg, #f15a65, #ff674d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bf2025-compact-subheadline {
  font-size: 15px;
  color: #666;
  font-weight: 500;
  margin: 0;
}

/* Deals Grid */
.bf2025-compact-deals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.bf2025-compact-deal-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1.5px solid rgba(241,90,101,0.12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bf2025-compact-deal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #f15a65, #ff674d);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bf2025-compact-deal-card:hover {
  border-color: rgba(241,90,101,0.3);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(241,90,101,0.12);
}

.bf2025-compact-deal-card:hover::before {
  opacity: 1;
}

.bf2025-compact-deal-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(241,90,101,0.1), rgba(255,103,77,0.1));
  color: #f15a65;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
  border: 1px solid rgba(241,90,101,0.2);
}

.bf2025-compact-deal-title {
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 4px;
  line-height: 1.3;
}

.bf2025-compact-deal-sessions {
  font-size: 13px;
  color: #666;
  font-weight: 600;
  margin-bottom: 12px;
}

.bf2025-compact-deal-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.bf2025-compact-price-now {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #f15a65, #ff674d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.bf2025-compact-price-was {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}

.bf2025-compact-price-save {
  display: inline-block;
  background: linear-gradient(135deg, #f15a65, #ff674d);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(241,90,101,0.25);
}

/* CTA Section */
.bf2025-compact-footer {
  text-align: center;
}

.bf2025-compact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #f15a65, #ff674d);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 16px 48px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(241,90,101,0.35);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.bf2025-compact-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(241,90,101,0.45);
  background: linear-gradient(135deg, #e15060, #ff5742);
}

.bf2025-compact-expiry {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ========== MODAL STYLES ========== */
.bf2025-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bf2025-modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.bf2025-modal {
  position: relative;
  width: 95%;
  max-width: 1000px;
  height: 90vh;
  max-height: 800px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.bf2025-modal-overlay.active .bf2025-modal {
  transform: scale(1);
}

.bf2025-modal-header {
  position: relative;
  padding: 20px 24px;
  background: linear-gradient(135deg, #f15a65, #ff674d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bf2025-modal-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
}

.bf2025-modal-close {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  padding: 0;
}

.bf2025-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.bf2025-modal-body {
  width: 100%;
  height: calc(100% - 76px);
  padding: 0;
  overflow: hidden;
}

.bf2025-modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

body.bf2025-modal-open {
  overflow: hidden;
}

.bf2025-modal-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #666;
}

.bf2025-modal-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f0f0f0;
  border-top-color: #f15a65;
  border-radius: 50%;
  animation: bf2025-spin 0.8s linear infinite;
  margin: 0 auto 12px;
}

@keyframes bf2025-spin {
  to { transform: rotate(360deg); }
}

.bf2025-loading-text {
  font-size: 14px;
  font-weight: 500;
  color: #575757;
}

.bf2025-loading-subtext {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .bf2025-banner-compact {
    padding: 24px 20px;
    margin: 20px 0;
  }
  
  .bf2025-compact-deals-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .bf2025-compact-headline {
    font-size: 24px;
  }
  
  .bf2025-compact-subheadline {
    font-size: 14px;
  }
  
  .bf2025-compact-deal-card {
    padding: 18px;
  }
  
  .bf2025-compact-price-now {
    font-size: 32px;
  }
  
  .bf2025-compact-cta {
    width: 100%;
    max-width: 340px;
  }
  
  .bf2025-modal {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }
  
  .bf2025-modal-header {
    padding: 16px 20px;
  }
  
  .bf2025-modal-title {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .bf2025-banner-compact {
    padding: 20px 16px;
  }
  
  .bf2025-compact-headline {
    font-size: 22px;
  }
  
  .bf2025-compact-deal-card {
    padding: 16px;
  }
  
  .bf2025-compact-deal-title {
    font-size: 16px;
  }
  
  .bf2025-compact-price-now {
    font-size: 28px;
  }
  
  .bf2025-compact-cta {
    padding: 14px 36px;
    font-size: 14px;
  }
}