.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2B2B2B;
  color: #E5E2DD;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner__text {
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 600px;
}

.cookie-banner__text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner__buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.15s;
}

.cookie-btn:hover {
  transform: scale(1.03);
}

.cookie-btn--accept {
  background: #A8B2A1;
  color: #fff;
}

.cookie-btn--accept:hover {
  background: #96A58E;
}

.cookie-btn--necessary {
  background: transparent;
  color: #E5E2DD;
  border: 1px solid #7A756F;
}

.cookie-btn--necessary:hover {
  border-color: #B8B1A9;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
  .cookie-banner__buttons {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
  }
}
