/* ============================================================
   COOKIE CONSENT BAR
   ============================================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(17, 17, 17, 0.97);
  border-top: 1px solid rgba(254, 192, 39, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 24px;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease;
}

.cookie-consent.cookie-consent--hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-consent__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-consent__text {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
}

.cookie-consent__text a {
  color: var(--gold);
  text-decoration: none;
}

.cookie-consent__text a:hover {
  text-decoration: underline;
}

.cookie-consent__btn {
  flex-shrink: 0;
  padding: 10px 32px;
  background: var(--gold);
  color: #000000;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.cookie-consent__btn:hover {
  background: var(--gold-dark);
}

@media (max-width: 600px) {
  .cookie-consent__inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .cookie-consent__btn {
    width: 100%;
  }
}
