






#cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 20px;
  background: #222;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-accept,
.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  transition: .2s ease;
}

.btn-accept {
  border: 0;
  background: #f1c40f;
  color: #111;
  cursor: pointer;
}

.btn-accept:hover {
  background: #ffd633;
}

.btn-more {
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  background: transparent;
}

.btn-more:hover {
  background: rgba(255,255,255,.08);
}

.cookie-content a {
  color: inherit;
}

@media (max-width: 768px) {
  #cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
  }

  .cookie-buttons {
    width: 100%;
  }

  .btn-accept,
  .btn-more {
    width: 100%;
  }
}