/* ==========================================================================
   NOSTAL CARS PUB — assets/css/interaction.css
   Styles partagés par les pages contact.php et favoris.php
   S'appuie sur les variables et composants définis dans style.css
   (les cartes véhicules de favoris.php réutilisent .nc-vehicle-card, déjà
   défini globalement)
   ========================================================================== */

/* ============================================================================
   CONTACT.PHP — préfixe "ct-"
   ============================================================================ */

.ct-info-card{ display:flex; gap:1.1rem; align-items:flex-start; padding: 1.6rem; }
.ct-info-card .ico{
  width:52px; height:52px; border-radius: var(--nc-radius); background: var(--nc-blue-light); color: var(--nc-blue);
  display:flex; align-items:center; justify-content:center; font-size:1.3rem; flex-shrink:0;
}
.ct-info-card h5{ margin-bottom:.3rem; font-size: var(--nc-fs-md); }
.ct-info-card p{ margin-bottom:0; font-size: var(--nc-fs-sm); }
.ct-info-card a{ color: var(--nc-blue); font-weight:700; }

.ct-map-block{ position:relative; border-radius: var(--nc-radius-lg); overflow:hidden; min-height:360px; }
.ct-map-block iframe{ position:absolute; inset:0; width:100%; height:100%; min-height:360px; border:0; display:block; }
.ct-map-overlay{
  position:absolute; bottom:1.4rem; left:1.4rem; right:1.4rem;
  background:#fff; border-radius: var(--nc-radius); padding:1.2rem 1.4rem;
  box-shadow: var(--nc-shadow-lg); display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap;
}
.ct-map-overlay h6{ margin-bottom:.2rem; }
.ct-map-overlay p{ margin-bottom:0; font-size: var(--nc-fs-xs); color: var(--nc-gray-500); }

.ct-hours-table{ width:100%; }
.ct-hours-table tr{ border-bottom:1px solid var(--nc-gray-300); }
.ct-hours-table tr:last-child{ border-bottom:none; }
.ct-hours-table td{ padding:.7rem 0; font-size: var(--nc-fs-sm); }
.ct-hours-table td:first-child{ color: var(--nc-gray-700); font-weight:700; }
.ct-hours-table td:last-child{ text-align:right; color: var(--nc-gray-500); }

/* ============================================================================
   FAVORIS.PHP — préfixe "fav-"
   ============================================================================ */

.fav-count-banner{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem;
  margin-bottom: 2.2rem; padding-bottom:1.4rem; border-bottom:1px solid var(--nc-gray-300);
}
.fav-count-banner strong{ color: var(--nc-blue); }

.fav-remove-btn{
  position:absolute; top:12px; right:12px; z-index:3;
  width:36px; height:36px; border-radius:50%; border:none;
  background: rgba(228,3,46,.92); color:#fff; display:flex; align-items:center; justify-content:center;
  transition: transform var(--nc-transition);
}
.fav-remove-btn:hover{ transform: scale(1.1); }