/* cookies.css – Stil für Cookie-Banner & Cookie-Seite */

/* --- Banner unten mittig --- */

.lkp-cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    z-index: 9999;
    background: rgba(15, 21, 48, 0.97);
    color: #f4f6ff;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    max-width: 480px;
    width: calc(100% - 2rem);
    border-radius: 12px;
  }
  
  .lkp-cookie-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .lkp-cookie-text {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .lkp-cookie-text a {
    color: #82b5ff;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  
  .lkp-cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .lkp-cookie-btn {
    border: none;
    cursor: pointer;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: inherit;
  }
  
  .lkp-cookie-btn-primary {
    background: #82b5ff;
    color: #0f1530;
  }
  
  .lkp-cookie-btn-secondary {
    background: transparent;
    color: #f4f6ff;
    border: 1px solid rgba(244, 246, 255, 0.4);
  }
  
  @media (min-width: 640px) {
    .lkp-cookie-inner {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  /* --- Cookie-Einstellungs-Seite (cookies.html) --- */
  
  .lkp-cookie-page {
    max-width: 800px;
    margin: 2.5rem auto;
    padding: 0 1rem 3rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }
  
  .lkp-cookie-page h1 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
  }
  
  .lkp-cookie-page p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
  }
  
  .lkp-cookie-page section {
    margin-top: 1.5rem;
  }
  
  .lkp-cookie-page fieldset {
    border: 1px solid #d0d4e5;
    border-radius: 8px;
    padding: 1rem 1.25rem;
  }
  
  .lkp-cookie-page legend {
    padding: 0 0.5rem;
    font-weight: 600;
  }
  
  .lkp-cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.75rem;
  }
  
  .lkp-cookie-option input[type="checkbox"] {
    margin-top: 0.2rem;
  }
  
  .lkp-cookie-option-title {
    font-weight: 500;
    font-size: 0.95rem;
  }
  
  .lkp-cookie-option-desc {
    font-size: 0.9rem;
    color: #555b75;
  }
  
  .lkp-cookie-page-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1.5rem;
  }
  
  .lkp-cookie-page-btn {
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }
  
  .lkp-cookie-page-btn-primary {
    background: #004f97;
    color: #ffffff;
  }
  
  .lkp-cookie-page-btn-secondary {
    background: transparent;
    color: #004f97;
    border: 1px solid #004f97;
  }
    