header {
  background-color: #14263a;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px;
}

.nav-container {
  display: flex;
  gap: 40px; 
  align-items: center;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  cursor: pointer;
}

.nav-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.nav-item span {
  font-size: 16px;
  white-space: nowrap;
  color: white;
}
.form-search-home {
  border-radius: 50px !important;
}

@media (max-width: 768px) {
  .form-search-home {
    padding: 0.5rem !important;
  }
}
.card {
    min-height: 380px;   
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
.d-flex.flex-nowrap.overflow-auto {
  scrollbar-width: none;        
  -ms-overflow-style: none;      
}
.d-flex.flex-nowrap.overflow-auto::-webkit-scrollbar {
  display: none;                 
}
 .footer {
  background-color: #14263a;  
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  border-radius: 20px;
  max-width: 1200px;

}

.footer-contenue {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
}

.footer-logo img {
  width: 150px;
  height: auto;
}


.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
}

.footer-column ul li a:hover {
  opacity: 0.8;
}


.footer-selectors {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.language-selector, .currency-selector {
  width: 100%;
}

.language-selector select, .currency-selector select {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  font-size: 14px;
  cursor: pointer;
}

.language-selector select option, .currency-selector select option {
  background-color: #e1b5b5;
  color: white;
}

.moyens-paiments {
  margin-top: 40px;
  text-align: center;
}
.moyens-paiments h3{
  margin-bottom: 20px;
  font-size: 18px;

}
.paiments-icons img {
  height: 30px;
  width: auto;
  transition: opacity 0.3s;
}
.social-media {
  margin-top: 30px;
  text-align: center;
}

.social-media h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: white;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px; 
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  border-radius: 20%;
}

.social-icons a:hover {
  transform: translateY(-3px);
}
.copyright {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  padding-top: 20px;
}
