.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 12px 20px;
    font-size: 14px;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .cookie-banner.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .cookie-banner a {
    color: #66c2ff;
    margin-left: 10px;
    text-decoration: underline;
  }

  .cookie-banner button {
    background: #444;
    color: #fff;
    border: none;
    padding: 6px 20px;
    cursor: pointer;
    margin-left: auto;
    margin-right: 16px;
    transition: background 0.3s ease;
  }

  .cookie-banner button:hover {
    background: #555;
  }