/* ----- Mise en page générale ----- */
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

.fond-boutique-souvenir {
  background-image: url("../images/fonds/fond_boutique_souvenir.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
}

.content_boutique_souvenir {
  min-height: calc(100vh - 120px);

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 10rem;
  padding: 2rem;
}

.boutique-card {
  display: flex;
  justify-content: center;
  align-items: center;

  text-decoration: none;

  transition: transform 0.3s ease;

  /* IMPORTANT : plus de fond, plus de blur, plus de cadre */
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.boutique-card.digital img {
  filter: drop-shadow(0 0 18px rgba(160, 100, 255, 0.7));
}

.boutique-card.physique img {
  filter: drop-shadow(0 0 18px rgba(184, 115, 51, 0.75));
}

.boutique-card img {
  width: 320px;
  height: 320px;

  object-fit: contain;

  transition: transform 0.3s ease, filter 0.3s ease;
}

.boutique-card:hover {
  transform: scale(1.1);
}

.boutique-card.digital:hover img {
  transform: scale(1.08);
  filter: brightness(1.2) drop-shadow(0 0 15px rgba(160,120,255,0.6));
}

.boutique-card.physique:hover img {
  transform: scale(1.08);
  filter: brightness(1.2) drop-shadow(0 0 15px rgba(184, 115, 51,0.6));
}

@media (max-width: 700px) {
  .content_boutique_souvenir {
    gap: 2rem;
  }

  .boutique-card img {
    width: 200px;
    height: 200px;
  }
}

@media (orientation: portrait) {
  .content_boutique_souvenir {
    flex-direction: column;
  }
}
    