/* cookie.css */
.zenith-cookie-bar {
  position: fixed;
  bottom: -150px;
  left: 0;
  right: 0;
  background: #0a0a0a;
  border-top: 2px solid rgba(212, 175, 55, 0.6);
  z-index: 99998; /* Just below very high overlays */
  padding: 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  transition: bottom 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: 'Raleway', sans-serif;
}

.zenith-cookie-bar.show {
  bottom: 0;
}

.zenith-cookie-text {
  color: #fff;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.5;
}

.zenith-cookie-actions {
  display: flex;
  gap: 1rem;
}

.zenith-cookie-btn {
  padding: 0.6rem 1.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.zenith-cookie-accept {
  background: #D4AF37;
  color: #000;
  border: 1px solid #D4AF37;
  font-weight: bold;
}

.zenith-cookie-accept:hover {
  background: #F0D060;
  border-color: #F0D060;
}

.zenith-cookie-learn {
  background: transparent;
  color: #D4AF37;
  border: 1px solid #D4AF37;
}

.zenith-cookie-learn:hover {
  background: rgba(212, 175, 55, 0.1);
}

@media (min-width: 768px) {
  .zenith-cookie-bar {
    flex-direction: row;
    padding: 1rem 3rem;
  }
  .zenith-cookie-text {
    text-align: left;
  }
}
