/* ==========================================================================
   France Déneigement - Bannière Hero Homepage
   Localisation : themes/default-bootstrap/css/hero-banner.css
   Template     : themes/default-bootstrap/hero-banner.tpl
   Version      : V1.1 - 3 cards univers avec eyebrow + badge
   ========================================================================== */

.fdn-hero-banner {
  font-family: Arial, sans-serif;
  padding: 24px 24px;
  background: #FAFAFA;
  border-radius: 8px;
  max-width: 1350px;
  margin: 0 auto;
  box-sizing: border-box;
  margin: 40px auto;

}

.fdn-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  height: 480px;
}

/* Card de base */
a.fdn-hero-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.fdn-hero-card:hover,
a.fdn-hero-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: inherit;
}

/* Bande verticale d'accent */
.fdn-hero-accent {
  width: 8px;
  flex-shrink: 0;
}

.fdn-hero-card--sel .fdn-hero-accent { background: #1D6FA4; }
.fdn-hero-card--accessoires .fdn-hero-accent { background: #f6d21a; }
.fdn-hero-card--absorbant .fdn-hero-accent { background: #BA7517; }

/* Conteneur interne */
.fdn-hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* Zone visuel produit */
.fdn-hero-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 24px 24px 16px 24px;
  min-height: 280px;
}

/* Bloc tags (eyebrow + badge) en haut à gauche */
.fdn-hero-tags {
  margin-bottom: 16px;
}

.fdn-hero-eyebrow {
  font-size: 12px;
  letter-spacing: 2.5px;
  color: #1d496f;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.2;
}

.fdn-hero-badge {
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  display: inline-block;
}

.fdn-hero-card--sel .fdn-hero-badge { background: #1D6FA4; }
.fdn-hero-card--accessoires .fdn-hero-badge { background: #f6d21a; }
.fdn-hero-card--absorbant .fdn-hero-badge { background: #BA7517; }

/* Zone image produit */
.fdn-hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.fdn-hero-image img {
  max-width: 100%;
  max-height: 280px;
  height: auto;
  width: auto;
  display: block;
}

/* Bandeau pied de card */
.fdn-hero-footer {
  background: #1d496f;
  padding: 22px 24px;
  color: #ffffff;
}

.fdn-hero-footer h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #ffffff;
  line-height: 1.2;
}

.fdn-hero-footer p {
  font-size: 13px;
  margin: 0 0 12px 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.fdn-hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fdn-hero-cta-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #ffffff;
  font-weight: 500;
}

.fdn-hero-cta-arrow {
  font-size: 18px;
  color: #ffffff;
  transition: transform 0.3s ease;
  display: inline-block;
}

a.fdn-hero-card:hover .fdn-hero-cta-arrow {
  transform: translateX(4px);
}

/* Placeholder visuel temporaire (en attendant les vraies photos) */
.fdn-hero-placeholder {
  width: 100%;
  max-width: 240px;
  height: 200px;
  background: #fafafa;
  border: 2px dashed #d0d0d0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 13px;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.fdn-hero-placeholder small {
  font-size: 11px;
  margin-top: 4px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 992px) {
  .fdn-hero-grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 16px;
  }
  a.fdn-hero-card {
    min-height: 380px;
  }
  .fdn-hero-visual {
    min-height: 240px;
  }
}

@media (max-width: 600px) {
  .fdn-hero-banner {
    padding: 16px 12px;
    margin: 15px;
  }
  .fdn-hero-visual {
    padding: 20px 20px 12px 20px;
    min-height: 200px;
  }
  .fdn-hero-footer {
    padding: 18px 20px;
  }
  .fdn-hero-footer h3 {
    font-size: 17px;
  }
  .fdn-hero-eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
  }
}
