.container-bagages-grid {
  display: block !important;
  overflow: hidden;

}

.bagages-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin: 20px 0;
  overflow: hidden;
}

.bagage-item {
  
  padding: 15px;
  border-radius: 10px;
  background: #fff;
  transition: transform 0.2s ease;
}

.bagage-item a {
  color :#000 !important; 
  cursor: pointer;
}

.bagage-item:hover {
  transform: scale(1.02);
}

.bagage-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.bagage-item h3 {
  margin: 10px 0;
}

.bagage-item ul {
  list-style: none;
  padding: 0;
}

.bagage-item ul li {
  margin-bottom: 5px;
}


.bagage-item .btn-reserver {
  display: inline-block;
    width: 100% !important;
    background: rgb(168, 39, 23);
    text-align: center;
    padding: 10px;
    color: #fff !important;
    margin-top: 15px;
  
  transition: background-color 0.2s ease;
}

.btn-reserver:hover {
  background: #6F261A;
  text-decoration: none;
  color: #fff;
}

.bagage-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  justify-content: space-between;
  background: #f8f8f8;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Conteneur de chaque select pour appliquer la flèche */
.bagage-filters .select-wrapper {
  position: relative;
  flex: 1;
  min-width: 180px;
}

.bagage-filters select {
  width: 100%;
  padding: 10px 40px 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 16px;
  font-family: inherit;
  color: #333;

  appearance: none; /* désactive le style natif */
  -webkit-appearance: none;
  -moz-appearance: none;

  background: transparent;
  z-index: 2;
  position: relative;
}

.bagage-filters .select-wrapper::after {
  content: '▼';
  font-size: 14px;
  color: #9B3321;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Focus */
.bagage-filters select:focus {
  border-color: #9B3321;
  box-shadow: 0 0 0 2px rgba(155, 51, 33, 0.2);
  outline: none;
}

.bagage-filters option {
  padding: 8px;
}

@media (max-width: 768px) {
  .bagage-filters {
    flex-direction: column;
  }

  .bagage-filters .select-wrapper {
    min-width: 100%;
  }
}




.grid-image-bagages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px 0;
  padding: 0 10px;
}

.grid-image-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .grid-image-bagages {
    grid-template-columns: 1fr;
  }
}





















