/* cookie-banner.css */
#cookie-banner {
    position: fixed;
    bottom: 20px; left: 20px; right: 20px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    z-index: 9999;
    font-family: sans-serif;
  }
  #cookie-banner .cookie-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  #cookie-banner .cookie-content i {
    font-size: 1.5rem;
  }
  #cookie-banner .cookie-content a {
    color: #ffd966;
    text-decoration: underline;
  }
  #cookie-accept {
    background: #ffd966;
    border: none;
    color: #222;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
  }
  #cookie-accept:hover {
    opacity: 0.9;
  }
  @media(max-width:600px) {
    #cookie-banner { flex-direction: column; gap:0.75rem; text-align:center; }
  }
  