/* ============================================================
   PADEL COLLECTION — Barre "Suivez-nous"
   Pilule grès pleine largeur (avec marges de 12px),
   flex horizontal : label | texte | flèche | CTA.
   ============================================================ */

.follow-bar {
  width: calc(100% - 24px);
  margin: 0 12px 12px;
  background: var(--color-gres);
  border-radius: 64px;
  min-height: 96px;
  padding: var(--space-m) var(--space-l);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
}

/* ---- Groupe gauche : label + texte ---- */
.follow-bar__left {
  display: flex;
  align-items: center;
  gap: var(--space-l);
  flex: 1;
  min-width: 0;
}

.follow-bar__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h3);
  color: var(--color-noir);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Flèche décorative entre label et texte */
.follow-bar__arrow-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-noir);
}

.follow-bar__text {
  font-family: var(--font-body);
  font-size: var(--fs-text-2);
  color: var(--color-noir);
  line-height: 1.45;
}
.follow-bar__text em {
  font-style: italic;
  font-weight: 700;
}

/* ---- CTA (bouton secondaire) ---- */
.follow-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 10px 24px;
  border-radius: var(--radius-button);
  background: var(--color-noir);
  color: var(--color-vanille);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-button);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    background var(--duration-base) var(--ease),
    color var(--duration-base) var(--ease);
}
.follow-bar__cta:hover {
  background: var(--color-terracotta);
  color: var(--color-sand);
}
.follow-bar__cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .follow-bar {
    gap: var(--space-s);
    padding: var(--space-m);
    border-radius: var(--radius-card);
    flex-wrap: wrap;
  }
  .follow-bar__arrow-icon { display: none; }
}

/* Mobile */
@media (max-width: 640px) {
  .follow-bar {
    border-radius: var(--radius-card);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-m);
    padding: var(--space-m);
  }
  .follow-bar__left {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-s);
  }
  .follow-bar__cta { align-self: stretch; justify-content: center; }
}
