.cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2a1a2e;              /* фіолетово-сірий як картки */
    color: #ffffff;
    padding: 14px 28px;
    border-top: 2px solid #c77dff;    /* фіолетовий акцент */
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 13px;
    font-family: "Segoe UI", sans-serif;
    z-index: 10001;
  }
  
  .cookie-text {
    line-height: 1.5;
    color: #ddd;                      /* світло-сірий текст */
  }
  
  .cookie-text a {
    color: #ff6bc5;                   /* яскравий рожевий */
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
  }
  
  .cookie-text a:hover {
    color: #c77dff;                   /* фіолетовий при ховері */
  }
  
  /* кнопка в стилі сайту */
  .cookie-btn {
    min-width: 80px;
    padding: 8px 22px;
    border-radius: 999px;
    border: none;
    background: #c77dff;              /* фіолетовий акцент */
    color: #1a0a1e;                   /* темний текст */
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(199, 125, 255, 0.3);
    transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.15s ease;
  }
  
  .cookie-btn:hover {
    filter: brightness(1.1);
    background: #ff6bc5;              /* рожевий при ховері */
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(255, 107, 197, 0.4);
  }
  
  .cookie-btn:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(199, 125, 255, 0.25);
  }
  
  @media (max-width: 768px) {
    .cookie-bar {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  /* AGE POPUP */
  .age-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 10, 30, 0.85);  /* темно-фіолетовий overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }