/* Styles minimaux - Ce qui n'est pas disponible en Bootstrap */

body {
  padding-top: 70px;
}

.navbar-logo {
  height: 65px;
  object-fit: contain;
}

.product-img {
  height: 160px;
  object-fit: contain;
}

.card {
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
}

.sidebar-toggle-btn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  z-index: 1000;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-selection {
  max-width: 1400px;
}

/* === Logos du Carousel === */
.marque-group {
  gap: 1.5rem;
}

.marque-logo {
  height: 60px;
  max-height: 70px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.marque-logo:hover {
  transform: scale(1.1);
}

/* === Logos du filtre Marque === */
.marque-group2 {
  gap: 0.7rem;
}

.marque-logo2 {
  height: 40px;
  max-height: 45px;
  object-fit: contain;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.marque-logo2:hover {
  transform: scale(1.05);
}

/* Footer - newsletter */
.newsletter-input {
  max-width: 300px;
}

/* Footer - Liens */
.footer-link {
  text-decoration: none;
  color: #212529;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #28a745;
}

/* Footer - Réseaux sociaux */
.social-links a {
  color: #28a745;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.1);
  color: #155724;
}

footer hr {
  border-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
  #sidebar.offcanvas-start {
    width: 85% !important;
  }
}