@charset "utf-8";
/* Grundlayout des Banners */
    .cookie-banner {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      background: #D4BF8F;
      color: #fff;
      padding: 16px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
	  font-family: Arial, Helvetica, sans-serif;
      justify-content: space-between;
      box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
      z-index: 9999;
    }

    .cookie-banner__content {
      flex: 1 1 auto;
      min-width: 260px;
	  text-align: center;
    }

    .cookie-banner__title {
      font-weight: 600;
      margin: 0 0 6px 0;
    }

    .cookie-banner__text {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.4;
    }

    .cookie-banner__actions {
      display: flex;
      gap: 8px;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn {
      padding: 10px 14px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .btn--primary {
      background: #C70A17;
      color: #fff;
      border: 1px solid #4b5563;
    }

    .btn--secondary {
      background: #E6D9B8;
      color: #000;
      border: 1px solid #4b5563;
    }

    /* Accessibility: Fokus sichtbar */
    .btn:focus-visible {
      outline: 3px solid #93c5fd;
      outline-offset: 2px;
    }

    /* Responsive Anpassungen */
    @media (max-width: 600px) {
      .cookie-banner { flex-direction: column; align-items: stretch; padding: 14px; }
      .cookie-banner__actions { justify-content: flex-start; }
    }

    /* Verstecken, wenn Zustimmung erteilt wurde */
    .hidden { display: none; }
