/* ═══════ COOKIE BANNER GDPR — Diama Service ═══════ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: #1a1a1a;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.28);
}

.cookie-banner__text {
  flex: 1 1 420px;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-banner__text a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
}

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

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 28px;
  border-radius: 0;
  border: 2px solid #0071BC;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cookie-btn--reject {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cookie-btn--reject:hover {
  background: rgba(255, 255, 255, 0.12);
}

.cookie-btn--accept {
  background: #0071BC;
  color: #ffffff;
  border-color: #0071BC;
}

.cookie-btn--accept:hover {
  background: #005a96;
  border-color: #005a96;
}

@media (max-width: 767px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px 20px;
    text-align: center;
  }
  .cookie-banner__text {
    flex: 1 1 auto;
  }
  .cookie-banner__actions {
    justify-content: center;
  }
  .cookie-btn {
    flex: 1;
    padding: 12px 16px;
  }
}
