/* Arrivage Section */
.arrivage {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 500px;
  text-align: center;
  min-width: 300px;
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  transition: transform 0.3s ease;
  background-color: white;
  width: 100%;
}

.arrivage-content {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 12px;
  gap: 20px;
padding: 20px;
}

.arrivage-column {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items : center;
  text-align: center;
  min-height: 300px;
  background-color: #f3f3f3;
  font-size: 2.2rem;
  color: #35687B;
  margin-bottom: 15px;
  padding: 10px 20px;
  border-radius: 8px;
  align-items: center;

}
.arrivage-column:hover{
transform: translateY(-3px);
  box-shadow: 0 4px 12px #35687B;
}

.arrivage-column h2 {
  color: #35687B;
  margin: 0 0 15px 0;
  font-size: 1.8rem;
  font-family: 'Edosz', sans-serif;
  font-weight: normal;
}

.arrivage-column img {
  max-width: 320px;
  width: 100%;
  height: 220px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 15px;
}

/* Contenu textuel dans Arrivage */
.contenu {
  border: 2px solid #35687B;
  line-height: 1.6;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1rem;
  color: #333;
}

/* Categories Section */
.categories {
  text-align: center;
  min-width: 300px;
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  transition: transform 0.3s ease;
  padding-bottom: 30px;
  width: 100%;
  margin-top: 10px;
  justify-content: center;
  background-color: white;
}

.categories h2 {
  font-weight: normal;
  background-color: #f3f3f3;
  color: #35687B;
  font-size: 40px;
  margin: 10px auto 25px auto;
  padding: 10px 25px;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.grid {
  display: grid;
  gap: 16px;
  justify-content: center;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, auto);
  width: fit-content;
  margin: 0 auto;
}

.categorie {
  width: 160px;
  text-align: center;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px #35687B;
  padding: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.categorie:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px #35687B;
}

.categorie img {
  width: 100%;
  border-radius: 8px;
  height: 120px;
  object-fit: cover;
}

.categorie span {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
  color: #333;
}

.categorie a {
  text-decoration: none;
  transition: color 0.3s;
  color: #333;
}

.categorie a:hover {
  color: #35687B;
}
