/* Cookie consent banner */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0a1614;
  border-top: 1px solid rgba(148, 163, 160, 0.2);
  padding: 20px 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  display: none;
}

.cookie-banner.show {
  display: block;
}

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

.cookie-banner-text {
  margin: 0;
  font-size: 15px;
  color: #f8faf9;
  line-height: 1.5;
  flex: 1;
  min-width: 240px;
}

.cookie-banner-text a {
  color: #e87a6d;
  text-decoration: none;
}

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

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, opacity 0.15s;
}

.cookie-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.cookie-btn-accept {
  background: #e87a6d;
  color: white;
}

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.1);
  color: #f8faf9;
  border: 1px solid rgba(148, 163, 160, 0.3);
}

.cookie-link {
  color: #94a3a0;
  font-size: 14px;
  text-decoration: none;
}

.cookie-link:hover {
  color: #e87a6d;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    flex-wrap: wrap;
  }
}
