.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background-color: black;
  border: 1px solid #e00303;
  color: white;
  font-family: Varela Round, sans-serif;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.cookie-banner-text {
  margin: 0;
  flex: 1 1 260px;
  font-size: 14px;
  line-height: 1.5;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  font-family: Varela Round, sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

.cookie-btn-accept {
  background-color: #e00303;
  border-color: #e00303;
}

.cookie-btn:hover {
  background-color: white;
  color: black;
}

.cookie-btn-accept:hover {
  background-color: #e00303;
  border-color: #e00303;
  opacity: 0.85;
  color: white;
}

@media (max-width: 479px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }
}
