.cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1c1c24;              /* темний фон як картки сайту */
    color: #ffffff;                    /* білий текст */
    padding: 14px 28px;
    border-top: 2px solid #ff4757;    /* червоний акцент як на сайті */
    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: "Prompt", sans-serif;
    z-index: 10001;
  }
  
  .cookie-text {
    line-height: 1.5;
    color: #cccccc;                   /* приглушений текст */
  }
  
  .cookie-text a {
    color: #ff4757;                   /* червоний акцент для посилань */
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
  }
  
  .cookie-text a:hover {
    color: #ff5a6b;                   /* трохи світліший при ховері */
  }
  
  /* кнопка в стилі сайту */
  .cookie-btn {
    min-width: 80px;
    padding: 8px 22px;
    border-radius: 999px;
    border: none;
    background: #ff4757;              /* червоний акцент */
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(255, 71, 87, 0.3);
    transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.15s ease;
  }
  
  .cookie-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(255, 71, 87, 0.4);
  }
  
  .cookie-btn:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(255, 71, 87, 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(0, 0, 0, 0.85);  /* темніше для кращого контрасту */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }