/* ============================================================
   COOKIE-BANNER – Osteopathie Trier
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 3px solid #1a4a5a;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
  padding: 1.25rem 1.5rem;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease;
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner--hide {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1 1 300px;
}

.cookie-banner__text p {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333;
  font-family: 'Lato', sans-serif;
}

.cookie-banner__text p:last-child {
  margin-bottom: 0;
}

.cookie-banner__text strong {
  color: #1a4a5a;
  font-size: 0.95rem;
}

.cookie-banner__text a {
  color: #1a4a5a;
  text-decoration: underline;
}

.cookie-banner__text a:hover {
  color: #c47a5a;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  align-items: center;
}

.cookie-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.cookie-btn--accept {
  background: #1a4a5a;
  color: #fff;
  border-color: #1a4a5a;
}

.cookie-btn--accept:hover,
.cookie-btn--accept:focus {
  background: #c47a5a;
  border-color: #c47a5a;
  outline: none;
}

/* Mobile */
@media (max-width: 600px) {
  .cookie-banner {
    padding: 1rem;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
