/* === Cookie Consent Banner — marine-experte.de === */

.me-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0D2B4E;
  color: #fff;
  padding: 16px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  font-size: 0.9rem;
  line-height: 1.5;
}

.me-cookie-banner.show {
  display: flex;
}

.me-cookie-banner p {
  margin: 0;
  max-width: 700px;
}

.me-cookie-banner a {
  color: #5b9fd6;
  text-decoration: underline;
}

.me-cookie-banner a:hover {
  color: #fff;
}

.me-cookie-btn {
  background: #fff;
  color: #0D2B4E;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
}

.me-cookie-btn:hover {
  background: #5b9fd6;
  color: #fff;
}

@media (max-width: 768px) {
  .me-cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
  }

  .me-cookie-banner p {
    max-width: 100%;
  }

  .me-cookie-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
}