/* Labels visuels partagés des services communs aux formules mariage. */
.wedding-service-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  width: min(820px, 100%);
  box-sizing: border-box;
  margin: 1rem auto 0;
  padding: 0;
  list-style: none;
}

.wedding-service-badges li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.58rem;
  box-sizing: border-box;
  padding: 0.58rem 0.65rem;
  border: 1px solid rgba(163, 145, 230, 0.24);
  border-radius: 13px;
  color: #443b50;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.91), rgba(247, 243, 255, 0.88));
  box-shadow: 0 5px 14px rgba(56, 37, 95, 0.07);
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.wedding-service-badges li:hover {
  border-color: rgba(113, 83, 232, 0.38);
  box-shadow: 0 8px 18px rgba(76, 48, 133, 0.12);
  transform: translateY(-2px);
}

.wedding-service-badges__icon {
  display: grid;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, #7153e8, #a254d2);
  box-shadow: 0 4px 10px rgba(91, 61, 180, 0.24);
}

.wedding-service-badges__icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wedding-service-badges li > span:last-child {
  display: grid;
  min-width: 0;
  gap: 0.08rem;
}

.wedding-service-badges strong {
  overflow: hidden;
  color: #3e3450;
  font-size: 0.69rem;
  font-weight: 880;
  line-height: 1.15;
  text-overflow: ellipsis;
}

.wedding-service-badges small {
  color: #746a7d;
  font-size: 0.56rem;
  font-weight: 700;
  line-height: 1.2;
}

[data-theme="dark"] .wedding-service-badges li {
  border-color: rgba(202, 188, 255, 0.2);
  color: #f1ecf6;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(167, 140, 255, 0.09));
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.16);
}

[data-theme="dark"] .wedding-service-badges strong { color: #f5f1ff; }
[data-theme="dark"] .wedding-service-badges small { color: #cec4d6; }

@media (max-width: 760px) {
  .wedding-service-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.48rem;
    margin-top: 0.85rem;
  }
}

@media (max-width: 390px) {
  .wedding-service-badges li { gap: 0.48rem; padding: 0.52rem; }
  .wedding-service-badges__icon { flex-basis: 1.8rem; width: 1.8rem; height: 1.8rem; }
  .wedding-service-badges strong { font-size: 0.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  .wedding-service-badges li { transition: none; }
}
