.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-radius: 12px;
  padding: 20px;
  z-index: 10000;
  transform: translateY(150%);
  transition: transform 0.3s ease;
  font-family: inherit;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__text {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin: 0 0 20px;
}

.cookie-banner__text a {
  color: #d32f2f;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  flex: 1 1 auto;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-banner__btn--accept {
  background: #d32f2f;
  color: white;
}

.cookie-banner__btn--accept:hover {
  background: #b71c1c;
}

.cookie-banner__btn--decline {
  background: #e0e0e0;
  color: #333;
}

.cookie-banner__btn--decline:hover {
  background: #bdbdbd;
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}