/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Bande rouge */
.topbar {
  background-color: #cc0000;
  color: white;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
}

.topbar-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.topbar-content span i {
  margin-right: 6px;
}

/* Menu */
.navbar {
  background-color: #0578DA;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #cc0000;
}

/* Burger */
.burger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Section Produits */
.container {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #111;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
}

.product-card h3 {
  font-size: 1.3rem;
  margin: 0.8rem;
  color: #111;
}

.product-card p {
  font-size: 0.95rem;
  margin: 0 0.8rem 1rem;
  color: #555;
}

.btn {
  display: block;
  margin: 0.5rem auto 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #cc0000;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #a50000;
}

/* Responsive */
@media (max-width: 768px) {
  .topbar-content {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #0578DA;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }

  .nav-links.show {
    display: flex;
  }

  .burger {
    display: block;
  }
  .header-center {
    flex: 1 1 33%;
    justify-content: center;
  }
}
.features {
  list-style: none;
  margin: 0.8rem;
  padding: 0;
}

.features li {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.features li i {
  color: #cc0000;
  margin-right: 8px;
  font-size: 1rem;
}


/* BOUTONS FLOTTANTS EN BAS */
.mobile-fixed-buttons .btn-float {
  position: fixed;
  bottom: 20px;
  background-color: #ff9900;
  color: white;
  font-size: 24px;
  padding: 12px;
  border-radius: 50%;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  text-decoration: none;
}

.btn-float.left {
  left: 20px;
}

.btn-float.right {
  right: 20px;
  background-color: #25D366; /* Vert officiel WhatsApp */
}


/* Afficher uniquement sur mobile */
@media (min-width: 769px) {
  .mobile-fixed-buttons {
    display: none;
  }
}

/* Bouton Principal Appel */
.btn-call {
  background-color: white;
  color: #ff9900;
  margin-right:10px;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.header-center {
  flex: 1 1 33%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img {
  height: 60px; /* ajuste selon ton besoin */
  width: auto;  /* garde les proportions */
}
