/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/* 🖤 Bannière promo Black Friday 🖤 */
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: #000000;   /* Noir profond */
  color: #FFD700;         /* Doré lumineux */
  z-index: 99999;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  padding: 0 12px;
  border-bottom: 1px solid #333333;
  box-sizing: border-box;
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.marquee-inner span {
  padding-right: 60px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Accent rouge sur certains mots */
.marquee-inner span strong {
  color: #FF3131;
}

/* Ajustement pour header */
body {
  --promo-height: 48px;
  padding-top: var(--promo-height);
}

@media (max-width: 768px) {
  .promo-banner { height: 40px; }
  body { --promo-height: 40px; }
  .marquee-inner span { font-size: 13px; }
  .marquee-inner { animation-duration: 12s; }
}

