/* ============================================
   BOUTIQUE SECTION
   ============================================ */

.boutique-section {
  padding: 4rem 0;
}

/* Header */
.boutique-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.boutique-section__title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}
.boutique-section__subtitle {
  font-size: 15px;
  color: #888;
  margin: 0;
}

/* Grid */
.boutique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}

/* Card */
.boutique-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  animation: fadeInUp 0.4s ease both;
}
.boutique-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.11);
  border-color: rgba(29, 158, 117, 0.25);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Image */
.boutique-image-card {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
}
.boutique-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.boutique-card:hover .boutique-image-card img {
  transform: scale(1.07);
}

/* Badge flottant */
.boutique-badge-float {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(29, 158, 117, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 8px 13px;
  text-align: center;
  pointer-events: none;
}
.badge-number {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.badge-text {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
  margin-top: 3px;
}

/* === OVERLAY MODERNE === */
.boutique-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.2)
  );

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transition: opacity 0.3s ease;
}

.boutique-card:hover .boutique-overlay {
  opacity: 1;
}

.boutique-overlay a {
  background: #fff;
  color: #1D9E75;

  font-weight: 600;
  font-size: 14px;

  padding: 12px 26px;
  border-radius: 40px;

  text-decoration: none;

  transform: translateY(10px);
  transition: all 0.3s ease;
}

.boutique-card:hover .boutique-overlay a {
  transform: translateY(0);
}

/* Infos */
.boutique-info {
  padding: 14px 16px 16px;
}
.boutique-name {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.boutique-category {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}
.boutique-category svg {
  flex-shrink: 0;
  color: #1D9E75;
}

/* Délai d'animation en cascade */
.boutique-card:nth-child(1) { animation-delay: 0.05s; }
.boutique-card:nth-child(2) { animation-delay: 0.10s; }
.boutique-card:nth-child(3) { animation-delay: 0.15s; }
.boutique-card:nth-child(4) { animation-delay: 0.20s; }
.boutique-card:nth-child(5) { animation-delay: 0.25s; }
.boutique-card:nth-child(6) { animation-delay: 0.30s; }
.boutique-card:nth-child(7) { animation-delay: 0.35s; }
.boutique-card:nth-child(8) { animation-delay: 0.40s; }