/* === COOKIE BAR ПІД СТИЛЬ САЙТУ === */

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f4f0e5;              /* бежевий як фон сайту */
  color: #333022;
  padding: 14px 28px;
  border-top: 2px solid #d1b676;    /* золота лінія як на картках */
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", sans-serif;
  z-index: 9998;
}

.cookie-text {
  line-height: 1.5;
}

.cookie-text a {
  color: #004225;                   /* темно-зелений */
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

/* кнопка в стилі "Explorar Agora" */
.cookie-btn {
  min-width: 80px;
  padding: 8px 22px;
  border-radius: 999px;
  border: none;
  background: #004225;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.15s ease;
}

.cookie-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.cookie-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

@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.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* COOKIE BAR ПІД СТИЛЬ САЙТУ */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f4f0e5;
  color: #333022;
  padding: 14px 28px;
  border-top: 2px solid #d1b676;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", sans-serif;
  z-index: 10001; /* ВИЩЕ, НІЖ У ПОПАПУ */
}
