﻿/* ============================================================
   FORTIGLASS — Cookie Consent Banner
   ============================================================ */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: rgba(5, 10, 20, 0.97);
  border-top: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
}
#cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.cookie-text {
  flex: 1;
  min-width: 260px;
}
.cookie-text p {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.92rem;
  color: var(--silver-dark);
  line-height: 1.6;
  margin: 0;
}
.cookie-text a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.cookie-text a:hover { color: var(--white); }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: "Orbitron", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.cookie-btn-accept {
  background: var(--white);
  color: var(--dark);
}
.cookie-btn-accept:hover {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 0 20px rgba(201,168,76,0.4);
}
.cookie-btn-reject {
  background: transparent;
  color: var(--silver-dark);
  border: 1px solid rgba(255,255,255,0.15);
}
.cookie-btn-reject:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

@media (max-width: 600px) {
  .cookie-inner { gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

