.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  border-top: 2px solid #2a2a2a;
  z-index: 9999;
  padding: 16px 24px;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  font-family: 'Barlow', sans-serif;
}

.cookie-banner.visible {
  display: block;
  animation: cookieSlideUp 0.3s ease-out;
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__link {
  color: #aaa;
  text-decoration: underline;
  margin-left: 6px;
  white-space: nowrap;
}

.cookie-banner__link:hover {
  color: #fff;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 10px 22px;
  border: none;
  border-radius: 4px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.cookie-banner__btn--primary {
  background: #FFFF00;
  color: #111;
}

.cookie-banner__btn--primary:hover {
  opacity: 0.88;
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: #e4e115;
  border: 1px solid #e4e115;
}

.cookie-banner__btn--secondary:hover {
  border-color: #FFFF00;
  color: #FFFF00;
}

@media (max-width: 600px) {
  .cookie-banner {
    padding: 16px;
  }

  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .cookie-banner__actions {
    flex-direction: column-reverse;
  }

  .cookie-banner__btn {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
}
