/* === Site-wide promo banner (Spring Sale) === */

.promo-banner {
  position: relative;
  background: linear-gradient(90deg, #d61f26 0%, #a31319 100%);
  color: #fff;
  padding: 10px 44px 10px 20px;
  font-family: -apple-system, BlinkMacSystemFont, Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  z-index: 60;
  box-shadow: 0 2px 8px rgba(214, 31, 38, 0.25);
  display: none; /* hidden by default; JS shows when not dismissed */
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.promo-banner.is-visible { display: block; }

.promo-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.promo-banner-headline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.promo-banner-headline::before {
  content: '🌸';
  font-size: 1.1rem;
}

.promo-banner-divider {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.45);
}

.promo-banner-finance {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.promo-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  color: #a31319;
  text-decoration: none;
  padding: 5px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.promo-banner-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
  color: #a31319;
  text-decoration: none;
}

.promo-banner-close {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  padding: 4px 8px;
  border-radius: 4px;
  transition: opacity 0.15s ease, background 0.15s ease;
}
.promo-banner-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}

/* Mobile: stack vertically, smaller text */
@media (max-width: 720px) {
  .promo-banner {
    font-size: 0.82rem;
    padding: 9px 36px 9px 14px;
  }
  .promo-banner-inner {
    gap: 4px 10px;
  }
  .promo-banner-divider { display: none; }
  .promo-banner-cta {
    font-size: 0.74rem;
    padding: 4px 10px;
  }
  .promo-banner-headline::before { font-size: 0.95rem; }
}

/* Print: hide */
@media print {
  .promo-banner { display: none !important; }
}
