
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 8px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  font-family: sans-serif;
  color: #333333;
  display: none;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}
.cookie-btn-accept {
  background: #000000;
  color: #ffffff;
}
.cookie-btn-accept:hover {
  filter: brightness(1.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.cookie-btn-reject {
  background: transparent;
  border: 1px solid #e0e0e0;
  color: #666666;
}
.cookie-btn-reject:hover {
  background: #333333;
  color: #ffffff;
}
@media (min-width: 768px) {
  .cookie-banner {
    bottom: 30px;
    left: 30px;
  }
}
