/* ============================================================
   VIKATOS — cookie-consent.css
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(17, 16, 9, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(212, 175, 110, 0.2);
  padding: var(--space-6) 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 280px;
}

.cookie-banner__title {
  font-family: var(--font-sans);
  font-size: var(--size-sm);
  font-weight: 500;
  color: var(--color-bone);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-1);
}

.cookie-banner__desc {
  font-family: var(--font-sans);
  font-size: var(--size-xs);
  font-weight: 300;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.6;
}

.cookie-banner__desc a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  padding: 10px 20px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.cookie-btn--accept {
  background: var(--color-blood);
  color: var(--color-bone);
  border: 1px solid var(--color-blood);
}
.cookie-btn--accept:hover {
  background: #a01f1f;
  border-color: #a01f1f;
}

.cookie-btn--reject {
  background: transparent;
  color: rgba(245, 240, 232, 0.5);
  border: 1px solid rgba(245, 240, 232, 0.15);
}
.cookie-btn--reject:hover {
  color: var(--color-bone);
  border-color: rgba(245, 240, 232, 0.4);
}

@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
