/* COOKIE BANNER */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  color: #223856;
  padding: 14px 20px;
  font-size: 13px;
  font-family: 'Cantarell', sans-serif;
  font-weight: bold;
  display: none;
  z-index: 9999;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-buttons {
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #ffffff;
  color: #223856;
  border: 1px solid #223856;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

.cookie-btn-reject {
  margin-left: 10px;
  background: #e5e7eb;
  color: #223856;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

.cookie-text {
  flex: 1;
}

.cookie-text a {
  color: #223856;
  text-decoration: underline;
  margin-left: 5px;
}