/* ============================================
   HANDY ROYAL - PROMO SYSTEM v2
   "Floating Deal Badge" mit Expand-Animation
   ============================================ */

/* === CSS Variables (verwendet deine Markenfarben) === */
:root {
  --promo-brand: #F4A21E;
  --promo-brand-dark: #C78614;
  --promo-brand-light: #FFF3E0;
  --promo-accent: #FFD36A;
  --promo-dark: #0f172a;
  --promo-muted: #64748b;
  --promo-white: #ffffff;
  --promo-shadow: 0 20px 50px rgba(244, 162, 30, 0.25);
  --promo-shadow-lg: 0 30px 70px rgba(244, 162, 30, 0.35);
}

/* ============================================
   1) FLOATING DEAL BADGE (unten rechts)
   - Erscheint nach Popup-Schließen
   - Pulst dezent
   - Expandiert bei Klick
   ============================================ */

.deal-badge {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 8000;
  
  /* Badge selbst */
  display: flex;
  align-items: center;
  gap: 10px;
  
  padding: 14px 20px;
  border-radius: 999px;
  
  background: linear-gradient(135deg, var(--promo-brand), var(--promo-brand-dark));
  color: var(--promo-white);
  
  box-shadow: var(--promo-shadow);
  cursor: pointer;
  
  /* Animation */
  transform: translateY(120px) scale(0.8);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Text */
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
}

.deal-badge.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.deal-badge:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--promo-shadow-lg);
}

/* Pulsierender Ring */
.deal-badge::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--promo-brand), var(--promo-accent));
  opacity: 0;
  z-index: -1;
  animation: badge-pulse 2.5s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.4;
  }
}

/* Icon im Badge */
.deal-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 1rem;
}

/* Preis-Highlight */
.deal-badge__price {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--promo-white);
  color: var(--promo-brand-dark);
  font-weight: 800;
  font-size: 0.9rem;
  margin-left: 4px;
}

/* Close-Mini-Button */
.deal-badge__close {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--promo-white);
  background: var(--promo-dark);
  color: var(--promo-white);
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.2s ease;
}

.deal-badge:hover .deal-badge__close {
  opacity: 1;
  transform: scale(1);
}

.deal-badge__close:hover {
  background: #ef4444;
}

/* ============================================
   2) EXPANDIERENDE PROMO-CARD
   - Öffnet sich über dem Badge
   - Smooth Animation
   ============================================ */

.deal-card {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 8001;
  
  width: min(380px, calc(100vw - 48px));
  
  background: var(--promo-white);
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
  
  overflow: hidden;
  
  /* Versteckt standardmäßig */
  transform: translateY(20px) scale(0.9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.deal-card.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Header mit Gradient */
.deal-card__header {
  position: relative;
  padding: 28px 24px 20px;
  background: linear-gradient(145deg, var(--promo-brand), var(--promo-brand-dark));
  color: var(--promo-white);
}

.deal-card__header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.deal-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.deal-card__badge::before {
  content: "⚡";
  font-size: 0.9rem;
}

.deal-card__title {
  margin: 0 0 8px;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.2;
}

.deal-card__subtitle {
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Close Button */
.deal-card__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: var(--promo-white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.deal-card__close:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg);
}

/* Body */
.deal-card__body {
  padding: 24px;
}

/* Preis-Display */
.deal-card__price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--promo-brand-light), #fff8eb);
  border: 1px solid rgba(244, 162, 30, 0.2);
}

.deal-card__price-label {
  font-size: 0.85rem;
  color: var(--promo-muted);
  font-weight: 600;
}

.deal-card__price-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--promo-brand-dark);
  line-height: 1;
}

.deal-card__price-value span {
  font-size: 1rem;
  opacity: 0.7;
}

/* Feature-Liste */
.deal-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deal-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--promo-dark);
}

.deal-card__features li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* CTA Buttons */
.deal-card__actions {
  display: flex;
  gap: 10px;
}

.deal-card__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.deal-card__btn--primary {
  background: linear-gradient(180deg, var(--promo-brand), var(--promo-brand-dark));
  color: var(--promo-white);
  box-shadow: 0 8px 24px rgba(244, 162, 30, 0.3);
}

.deal-card__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(244, 162, 30, 0.4);
}

.deal-card__btn--secondary {
  background: var(--promo-brand-light);
  color: var(--promo-brand-dark);
}

.deal-card__btn--secondary:hover {
  background: #ffe4b3;
}

/* WhatsApp Icon */
.deal-card__btn svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   3) HERO PROMO BAR (im Hero, unten schwebend)
   ============================================ */

.hero-promo-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(244, 162, 30, 0.3);
}

.hero-promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  position: relative;
}

.hero-promo-bar__content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-promo-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--promo-brand), var(--promo-brand-dark));
  flex-shrink: 0;
}

.hero-promo-bar__icon svg {
  color: white;
}

.hero-promo-bar__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-promo-bar__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--promo-accent);
}

.hero-promo-bar__label::before {
  content: "•";
  animation: blink 1.5s ease-in-out infinite;
}

.hero-promo-bar__headline {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
}

.hero-promo-bar__headline strong {
  color: var(--promo-brand);
  font-weight: 800;
}

.hero-promo-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--promo-brand), var(--promo-brand-dark));
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(244, 162, 30, 0.35);
  white-space: nowrap;
}

.hero-promo-bar__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 162, 30, 0.45);
}

.hero-promo-bar__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.hero-promo-bar__close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Mobile Anpassungen */
@media (max-width: 767px) {
  .hero-promo-bar__inner {
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px 14px;
  }
  
  .hero-promo-bar__content {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  
  .hero-promo-bar__icon {
    display: none;
  }
  
  .hero-promo-bar__text {
    align-items: center;
  }
  
  .hero-promo-bar__headline {
    font-size: 0.85rem;
  }
  
  .hero-promo-bar__btn {
    width: 100%;
    max-width: 200px;
  }
  
  .hero-promo-bar__close {
    position: absolute;
    right: 8px;
    top: 8px;
    transform: none;
    width: 24px;
    height: 24px;
  }
}

/* Hero muss position: relative haben */
.hero-v2 {
  position: relative !important;
}

/* ============================================
   3b) HERO DEAL RIBBON (alternatives Design)
   ============================================ */

.hero-deal-ribbon {
  position: absolute;
  top: 20px;
  right: -45px;
  z-index: 10;
  
  padding: 8px 50px;
  background: linear-gradient(90deg, var(--promo-brand), var(--promo-accent));
  color: var(--promo-dark);
  
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  
  transform: rotate(45deg);
  box-shadow: 0 4px 15px rgba(244, 162, 30, 0.4);
}

/* ============================================
   4) INLINE PROMO BANNER (unter Hero)
   - Ersetzt das alte Banner
   - Klickbar, führt zur Card
   ============================================ */

.inline-promo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 0;
}

.inline-promo__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

/* Linke Seite: Content */
.inline-promo__content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.inline-promo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--promo-brand), var(--promo-brand-dark));
  flex-shrink: 0;
}

.inline-promo__icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.inline-promo__text {
  color: white;
}

.inline-promo__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--promo-accent);
  margin-bottom: 4px;
}

.inline-promo__label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--promo-accent);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.inline-promo__headline {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.inline-promo__headline strong {
  color: var(--promo-brand);
}

/* Rechte Seite: CTA */
.inline-promo__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.inline-promo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--promo-brand), var(--promo-brand-dark));
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(244, 162, 30, 0.35);
}

.inline-promo__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(244, 162, 30, 0.45);
}

.inline-promo__dismiss {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.inline-promo__dismiss:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Decorative Elements */
.inline-promo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--promo-brand), transparent);
}

.inline-promo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

/* ============================================
   5) INITIAL WELCOME MODAL
   - Erscheint nur beim ersten Besuch
   - Moderner, weniger aufdringlich
   ============================================ */

.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  
  /* Backdrop */
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.welcome-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.welcome-modal__card {
  position: relative;
  width: min(440px, 100%);
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
  
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.welcome-modal.is-visible .welcome-modal__card {
  transform: scale(1) translateY(0);
}

/* Image Header */
.welcome-modal__image {
  position: relative;
  height: 200px;
  background: linear-gradient(145deg, var(--promo-brand), var(--promo-brand-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.welcome-modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: 0.3;
}

.welcome-modal__image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 24px;
}

.welcome-modal__price-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.welcome-modal__price-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin-bottom: 4px;
}

.welcome-modal__price-value {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.welcome-modal__price-value span {
  font-size: 1.5rem;
}

/* Close Button */
.welcome-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.welcome-modal__close:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg);
}

/* Body */
.welcome-modal__body {
  padding: 28px;
  text-align: center;
}

.welcome-modal__title {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--promo-dark);
  line-height: 1.2;
}

.welcome-modal__desc {
  margin: 0 0 24px;
  font-size: 1rem;
  color: var(--promo-muted);
  line-height: 1.5;
}

.welcome-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.welcome-modal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.welcome-modal__btn--primary {
  background: linear-gradient(180deg, var(--promo-brand), var(--promo-brand-dark));
  color: white;
  box-shadow: 0 10px 30px rgba(244, 162, 30, 0.35);
}

.welcome-modal__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(244, 162, 30, 0.45);
}

.welcome-modal__btn--ghost {
  background: transparent;
  color: var(--promo-muted);
}

.welcome-modal__btn--ghost:hover {
  color: var(--promo-dark);
  background: rgba(0, 0, 0, 0.05);
}

/* ============================================
   6) MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 767px) {
  /* Deal Badge */
  .deal-badge {
    bottom: 16px;
    right: 16px;
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  
  .deal-badge__icon {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
  }
  
  /* Deal Card */
  .deal-card {
    bottom: 80px;
    right: 16px;
    left: 16px;
    width: auto;
  }
  
  .deal-card__header {
    padding: 24px 20px 18px;
  }
  
  .deal-card__title {
    font-size: 1.2rem;
  }
  
  .deal-card__body {
    padding: 20px;
  }
  
  .deal-card__price-value {
    font-size: 1.6rem;
  }
  
  .deal-card__actions {
    flex-direction: column;
  }
  
  /* Inline Promo */
  .inline-promo__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px 20px;
  }
  
  .inline-promo__content {
    flex-direction: column;
    text-align: center;
  }
  
  .inline-promo__headline {
    font-size: 1rem;
  }
  
  .inline-promo__cta {
    width: 100%;
    justify-content: center;
  }
  
  .inline-promo__btn {
    flex: 1;
  }
  
  /* Welcome Modal */
  .welcome-modal__image {
    height: 160px;
  }
  
  .welcome-modal__price-value {
    font-size: 2.5rem;
  }
  
  .welcome-modal__body {
    padding: 24px 20px;
  }
  
  .welcome-modal__title {
    font-size: 1.3rem;
  }
}

/* ============================================
   7) ANIMATIONS
   ============================================ */

/* Entrance animations */
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Shimmer effect for price */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.deal-card__price-value {
  background: linear-gradient(90deg, 
    var(--promo-brand-dark) 0%, 
    var(--promo-brand) 25%, 
    var(--promo-accent) 50%, 
    var(--promo-brand) 75%, 
    var(--promo-brand-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ============================================
   8) ACCESSIBILITY
   ============================================ */

/* Focus states */
.deal-badge:focus-visible,
.deal-card__btn:focus-visible,
.inline-promo__btn:focus-visible,
.welcome-modal__btn:focus-visible {
  outline: 3px solid var(--promo-brand);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .deal-badge,
  .deal-card,
  .welcome-modal,
  .welcome-modal__card {
    transition: opacity 0.2s ease;
  }
  
  .deal-badge::before,
  .inline-promo__label::before,
  .deal-card__price-value {
    animation: none;
  }
}

/* ============================================
   9) HIDE OLD PROMO ELEMENTS
   ============================================ */

/* Verstecke die alten Promo-Elemente */
#promo-popup,
#promo-banner {
  display: none !important;
}

