/* ============================================================
   home_page_mx — Styles front-office
   Thème : fond BLANC, accent rouge #e31d27
   Préfixe : hpmx-
   ============================================================ */

/* ── Variables ───────────────────────────────────────────── */
:root {
  --hpmx-yellow:       #e31d27;
  --hpmx-yellow-dark:  #b3161f;
  --hpmx-dark:         #1a1a1a;
  --hpmx-grey:         #666;
  --hpmx-grey-light:   #999;
  --hpmx-bg:           #ffffff;
  --hpmx-bg-alt:       #f5f5f5;
  --hpmx-bg-card:      #ffffff;
  --hpmx-border:       #e5e5e5;
  --hpmx-font-display: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --hpmx-font-body:    'Barlow', Arial, sans-serif;
}

/* ── Animations fade-up ──────────────────────────────────── */
.hpmx-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hpmx-fade-up.hpmx-visible { opacity: 1; transform: translateY(0); }
.hpmx-delay-1 { transition-delay: 0.1s; }
.hpmx-delay-2 { transition-delay: 0.2s; }
.hpmx-delay-3 { transition-delay: 0.3s; }
.hpmx-delay-4 { transition-delay: 0.4s; }

/* ================================================================
   1. HERO
   ================================================================ */
.hpmx-hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hpmx-hero-slides { position: absolute; inset: 0; }

.hpmx-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hpmx-hero-slide.active { opacity: 1; }

.hpmx-hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a2a3a;
  background-image: linear-gradient(135deg, #1a2a3a 0%, #2d4a6a 50%, #1a1a2a 100%);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hpmx-hero-slide.active .hpmx-hero-slide-bg { transform: scale(1); }

.hpmx-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.1) 100%);
}
.hpmx-hero-gradient-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to top, #ffffff 0%, transparent 100%);
}

.hpmx-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 60px 80px;
  max-width: 700px;
}

.hpmx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hpmx-yellow);
  color: #fff;
  font-family: var(--hpmx-font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 24px;
}
.hpmx-hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #000;
  border-radius: 50%;
  flex-shrink: 0;
  animation: hpmx-blink 1.5s ease-in-out infinite;
}
@keyframes hpmx-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.hpmx-hero-title {
  font-family: var(--hpmx-font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: #ffffff;
}
.hpmx-accent { color: var(--hpmx-yellow); }

.hpmx-hero-subtitle {
  font-family: var(--hpmx-font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 480px;
}

.hpmx-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hpmx-btn-primary {
  background: var(--hpmx-yellow);
  color: #fff;
  font-family: var(--hpmx-font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  display: inline-block;
  text-decoration: none;
  line-height: 1;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.hpmx-btn-primary:hover { background: var(--hpmx-yellow-dark); color: #fff; transform: translateY(-2px); text-decoration: none; }

.hpmx-btn-outline {
  background: transparent;
  color: #fff;
  font-family: var(--hpmx-font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid rgba(255,255,255,0.4);
  display: inline-block;
  text-decoration: none;
  line-height: 1;
  transition: border-color 0.2s;
  cursor: pointer;
}
.hpmx-btn-outline:hover { border-color: #fff; color: #fff; text-decoration: none; }

.hpmx-hero-indicators {
  position: absolute;
  bottom: 30px; right: 60px;
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hpmx-indicator {
  width: 32px; height: 3px;
  background: rgba(255,255,255,0.3);
  border: none; padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s, width 0.3s;
}
.hpmx-indicator.active { background: var(--hpmx-yellow); width: 56px; }

/* ================================================================
   2. BRANDS STRIP — Défilement infini
   ================================================================ */
.hpmx-brands-strip {
  background: var(--hpmx-bg-alt);
  border-top: 1px solid var(--hpmx-border);
  border-bottom: 1px solid var(--hpmx-border);
  padding: 18px 0;
  overflow: hidden;
}
.hpmx-brands-track {
  display: flex;
  gap: 0;
  animation: hpmx-scroll 24s linear infinite;
  width: max-content;
}
@keyframes hpmx-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hpmx-brand-scroll-item {
  font-family: var(--hpmx-font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #555;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 30px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.hpmx-brand-scroll-item::after {
  content: '//';
  color: var(--hpmx-yellow);
  font-size: 13px;
  margin-left: 30px;
}
.hpmx-brand-scroll-item:hover { color: var(--hpmx-grey); }

/* ================================================================
   SECTIONS — Layout commun
   ================================================================ */
.hpmx-section {
  padding: 80px 60px;
  background: var(--hpmx-bg);
}
.hpmx-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.hpmx-section-label {
  font-family: var(--hpmx-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--hpmx-yellow-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hpmx-section-title {
  font-family: var(--hpmx-font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--hpmx-dark);
}
.hpmx-see-all {
  font-family: var(--hpmx-font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hpmx-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--hpmx-yellow);
  transition: gap 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.hpmx-see-all:hover { gap: 14px; color: var(--hpmx-dark); text-decoration: none; }

/* ================================================================
   3. NOS MARQUES — Grille
   ================================================================ */
.hpmx-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hpmx-brand-card {
  background: var(--hpmx-bg-card);
  border: 1px solid var(--hpmx-border);
  padding: 28px 16px;
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.hpmx-brand-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--hpmx-yellow);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.hpmx-brand-card:hover { border-color: #ccc; transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); text-decoration: none; }
.hpmx-brand-card:hover::after { transform: scaleX(1); }

.hpmx-brand-logo {
  font-family: var(--hpmx-font-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--hpmx-dark);
  margin-bottom: 6px;
}
.hpmx-brand-count {
  font-family: var(--hpmx-font-body);
  font-size: 11px;
  color: #666;
  font-weight: 300;
}

/* ================================================================
   4. CATÉGORIES
   ================================================================ */
.hpmx-categories-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.hpmx-cat-card {
  position: relative;
  overflow: hidden;
  display: block;
  background: #c8c8c8;
  text-decoration: none;
}
.hpmx-cat-first { grid-row: 1 / 3; }

.hpmx-cat-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #888;
  filter: brightness(0.82) saturate(0.9);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.hpmx-cat-card:hover .hpmx-cat-bg { transform: scale(1.07); filter: brightness(0.92) saturate(1); }

.hpmx-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.30) 38%, rgba(0,0,0,0) 68%);
}
.hpmx-cat-arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}
.hpmx-cat-card:hover .hpmx-cat-arrow { background: var(--hpmx-yellow); border-color: var(--hpmx-yellow); color: #000; }

.hpmx-cat-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
}
.hpmx-cat-tag {
  display: inline-block;
  background: var(--hpmx-yellow);
  color: #000;
  font-family: var(--hpmx-font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 3px 10px;
  margin-bottom: 8px;
}
.hpmx-cat-name {
  font-family: var(--hpmx-font-display);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1;
  color: #fff;
  margin-bottom: 6px;
}
.hpmx-cat-first .hpmx-cat-name { font-size: 46px; }
.hpmx-cat-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-family: var(--hpmx-font-body);
}

/* ================================================================
   5. PROMO BANNER
   ================================================================ */
.hpmx-promo-banner {
  margin: 0 60px;
  background: linear-gradient(135deg, #a01018 0%, var(--hpmx-yellow) 50%, #ff5a63 100%);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.hpmx-promo-banner::before {
  content: 'PROMO';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--hpmx-font-display);
  font-size: 120px;
  font-weight: 900;
  color: rgba(0,0,0,0.07);
  letter-spacing: -4px;
  pointer-events: none;
}
.hpmx-promo-tag {
  font-family: var(--hpmx-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(0,0,0,0.55);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hpmx-promo-title {
  font-family: var(--hpmx-font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1;
  color: #000;
}
.hpmx-promo-sub {
  margin-top: 10px;
  font-size: 16px;
  color: rgba(0,0,0,0.65);
  font-family: var(--hpmx-font-body);
}
.hpmx-btn-dark {
  background: #000;
  color: var(--hpmx-yellow);
  font-family: var(--hpmx-font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 40px;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.hpmx-btn-dark:hover { transform: scale(1.03); color: var(--hpmx-yellow); text-decoration: none; }

/* ================================================================
   6. PRODUITS POPULAIRES
   ================================================================ */
.hpmx-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hpmx-product-card {
  background: var(--hpmx-bg-card);
  border: 1px solid var(--hpmx-border);
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
}
.hpmx-product-card:hover {
  border-color: #ccc;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.hpmx-product-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: var(--hpmx-yellow);
  color: #000;
  font-family: var(--hpmx-font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 10px;
}
.hpmx-product-img {
  background: var(--hpmx-bg-alt);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.hpmx-product-img img {
  max-height: 170px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s;
}
.hpmx-product-card:hover .hpmx-product-img img { transform: scale(1.08); }
.hpmx-product-quick {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--hpmx-yellow);
  color: #000;
  font-family: var(--hpmx-font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-align: center;
  padding: 10px;
  transform: translateY(100%);
  transition: transform 0.3s;
  text-transform: uppercase;
}
.hpmx-product-card:hover .hpmx-product-quick { transform: translateY(0); }

.hpmx-product-info { padding: 16px; }
.hpmx-product-brand {
  font-family: var(--hpmx-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--hpmx-yellow-dark);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hpmx-product-name {
  font-family: var(--hpmx-font-body);
  font-size: 14px;
  color: var(--hpmx-grey);
  line-height: 1.4;
  margin-bottom: 14px;
  min-height: 40px;
}
.hpmx-product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hpmx-price-now {
  font-family: var(--hpmx-font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--hpmx-dark);
}
.hpmx-price-old {
  font-size: 13px;
  color: #bbb;
  text-decoration: line-through;
  margin-left: 6px;
}
.hpmx-btn-add {
  width: 36px; height: 36px;
  background: var(--hpmx-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  color: #000;
  transition: background 0.2s;
}
.hpmx-btn-add:hover { background: var(--hpmx-yellow-dark); color: #000; text-decoration: none; }

/* ================================================================
   7. STATS
   ================================================================ */
.hpmx-stats-strip {
  background: var(--hpmx-bg-alt);
  border-top: 1px solid var(--hpmx-border);
  border-bottom: 1px solid var(--hpmx-border);
  padding: 48px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hpmx-stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--hpmx-border);
}
.hpmx-stat-item:last-child { border-right: none; }
.hpmx-stat-num {
  font-family: var(--hpmx-font-display);
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 900;
  color: var(--hpmx-yellow-dark);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.hpmx-stat-label {
  font-family: var(--hpmx-font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--hpmx-grey);
  text-transform: uppercase;
}

/* ================================================================
   8. NOS ENGAGEMENTS
   ================================================================ */
.hpmx-avantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hpmx-avantage-card {
  background: var(--hpmx-bg-card);
  border: 1px solid var(--hpmx-border);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.hpmx-avantage-card:hover { border-color: var(--hpmx-yellow); }
.hpmx-avantage-num {
  position: absolute;
  top: -10px; right: 16px;
  font-family: var(--hpmx-font-display);
  font-size: 80px;
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  pointer-events: none;
}
.hpmx-avantage-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}
.hpmx-avantage-title {
  font-family: var(--hpmx-font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--hpmx-dark);
  margin-bottom: 10px;
}
.hpmx-avantage-text {
  font-family: var(--hpmx-font-body);
  font-size: 14px;
  color: var(--hpmx-grey);
  line-height: 1.7;
  font-weight: 300;
}

/* ================================================================
   9. SEO BLOCK
   ================================================================ */
.hpmx-seo-block {
  background: var(--hpmx-bg-alt);
  border-top: 1px solid var(--hpmx-border);
  padding: 80px 60px;
}
.hpmx-seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hpmx-seo-title {
  font-family: var(--hpmx-font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.05;
  color: var(--hpmx-dark);
  margin-bottom: 28px;
}
.hpmx-seo-text {
  font-family: var(--hpmx-font-body);
  font-size: 15px;
  color: var(--hpmx-grey);
  line-height: 1.9;
  font-weight: 300;
}
.hpmx-seo-text p { margin-bottom: 16px; }

.hpmx-seo-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hpmx-seo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--hpmx-border);
  font-family: var(--hpmx-font-body);
  font-size: 13px;
  color: var(--hpmx-grey);
  text-decoration: none;
  transition: all 0.2s;
}
.hpmx-seo-link::before {
  content: '→';
  color: var(--hpmx-yellow-dark);
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}
.hpmx-seo-link:hover { background: #f0f0f0; color: var(--hpmx-dark); border-color: #ccc; text-decoration: none; }

/* ================================================================
   RESPONSIVE — Tablette ≤ 1024px
   ================================================================ */
@media (max-width: 1024px) {
  .hpmx-hero-content { padding: 40px 30px 70px; }
  .hpmx-hero-indicators { right: 30px; }
  .hpmx-section { padding: 60px 30px; }
  .hpmx-promo-banner { margin: 0 30px; padding: 36px 40px; }
  .hpmx-stats-strip { padding: 40px 30px; }
  .hpmx-seo-block { padding: 60px 30px; }
  .hpmx-brands-grid { grid-template-columns: repeat(3, 1fr); }
  .hpmx-categories-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 200px 200px; }
  .hpmx-cat-first { grid-row: 1 / 2; grid-column: 1 / 3; }
  .hpmx-cat-first .hpmx-cat-name { font-size: 36px; }
  .hpmx-products-grid { grid-template-columns: repeat(2, 1fr); }
  .hpmx-avantages-grid { grid-template-columns: repeat(2, 1fr); }
  .hpmx-seo-grid { gap: 48px; }
}

/* RESPONSIVE — Mobile ≤ 768px */
@media (max-width: 768px) {
  .hpmx-hero { height: 78vh; min-height: 480px; }
  .hpmx-hero-content { padding: 30px 20px 60px; }
  .hpmx-hero-gradient { background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.45) 100%); }
  .hpmx-hero-indicators { right: 20px; bottom: 20px; }
  .hpmx-section { padding: 48px 16px; }
  .hpmx-section-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hpmx-brands-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hpmx-categories-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .hpmx-cat-first { grid-row: 1 / 2; grid-column: 1; }
  .hpmx-promo-banner { margin: 0 16px; padding: 30px 24px; flex-direction: column; gap: 20px; text-align: center; }
  .hpmx-promo-banner::before { display: none; }
  .hpmx-products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hpmx-product-img { height: 160px; }
  .hpmx-stats-strip { grid-template-columns: repeat(2, 1fr); padding: 32px 16px; }
  .hpmx-stat-item { border-right: none; border-bottom: 1px solid var(--hpmx-border); }
  .hpmx-stat-item:nth-child(odd) { border-right: 1px solid var(--hpmx-border); }
  .hpmx-stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .hpmx-avantages-grid { grid-template-columns: 1fr; gap: 12px; }
  .hpmx-seo-block { padding: 48px 16px; }
  .hpmx-seo-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Petit mobile ≤ 480px */
@media (max-width: 480px) {
  .hpmx-hero-ctas { flex-direction: column; }
  .hpmx-btn-primary, .hpmx-btn-outline { text-align: center; width: 100%; }
  .hpmx-products-grid { grid-template-columns: 1fr; }
  .hpmx-seo-links { grid-template-columns: 1fr; }
}

/* ===== RFDEV — Promo banner lisibilité ===== */
.hpmx-promo-tag    { color: rgba(255,255,255,0.85); }
.hpmx-promo-title  { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.15); }
.hpmx-promo-sub    { color: rgba(255,255,255,0.92); }
.hpmx-promo-banner::before { color: rgba(255,255,255,0.10); }
.hpmx-btn-dark { background:#fff; color:#e31d27; box-shadow:0 6px 20px rgba(0,0,0,0.20); }
.hpmx-btn-dark:hover { background:#111; color:#fff; transform:scale(1.03); }
/* ===== fin RFDEV Promo ===== */
