.coups {
  font-family: var(--font--scribo-brush-pro);
  letter-spacing: -0.02em;
  text-transform: none;
  font-weight: 400;
  line-height: 75%;
  display: inline-block;
  transform: rotate(-2deg);
}

@media (max-width: 767px) {
  footer {
    text-align: center;
  }
}

.km-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 20, 15, 0.6);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-family: "DM Sans", sans-serif;
}

.km-modal-overlay.hidden {
  display: none;
}

.km-modal-panel {
  background: #fff;
  width: 100%;
  border-radius: 1rem;
  max-height: 90vh;
  max-width: 700px;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  animation: km-pop 0.18s ease-out;
}

@keyframes km-pop {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.km-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: #5C9A1B;
  color: #fff;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  position: sticky;
  top: 0;
}

.km-modal-close {
  color: #fff;
  opacity: 0.8;
  padding: 0.25rem;
  border-radius: 0.5rem;
}

.km-modal-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}

.km-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #5C9A1B;
  margin-bottom: 0.3rem;
}

.km-input {
  width: 100%;
  border: 1px solid #c5e1c6;
  background: #f5f8f0;
  border-radius: 0.6rem;
  padding: 0.6rem 0.8rem;
  font-size: 0.9rem;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

.km-input:focus {
  border-color: #C77B3A;
  box-shadow: 0 0 0 3px rgba(237, 104, 65, 0.15);
}

.km-zone-label {
  background: transparent;
  border: none;
  box-shadow: none;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.85rem;
}
