.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1e2a34;              /* Темний Графіт як картки */
  color: #ffffff;
  padding: 14px 28px;
  border-top: 2px solid #40a08e;    /* Смарагдовий Ліс акцент */
  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: #e8c46a;                   /* М'яке Золото */
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.cookie-text a:hover {
  color: #40a08e;                   /* Смарагдовий Ліс при ховері */
}

/* кнопка в стилі сайту */
.cookie-btn {
  min-width: 80px;
  padding: 8px 22px;
  border-radius: 999px;
  border: none;
  background: #40a08e;              /* Смарагдовий Ліс акцент */
  color: #121e25;                   /* Глибокий Океан темний текст */
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(64, 160, 142, 0.3); /* Тінь Смарагдового Лісу */
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.15s ease;
}

.cookie-btn:hover {
  filter: brightness(1.1);
  background: #e8c46a;              /* М'яке Золото при ховері */
  color: #121e25;                   /* Глибокий Океан темний текст */
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(232, 196, 106, 0.4); /* Тінь М'якого Золота */
}

.cookie-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(64, 160, 142, 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(18, 30, 37, 0.85);  /* Глибокий Океан overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
}