.cookie-banner {
  position: static;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  color: #5c2d1e;
  padding: 12px 0;
  z-index: 10000;
  box-shadow: 0 2px 15px rgba(92, 45, 30, 0.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(92, 45, 30, 0.1);
  font-family: 'Tilda Sans', Arial, sans-serif !important
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.cookie-content span {
  font-size: 14px;
  line-height: 1.4;
}

.cookie-banner a {
  color: #7cbd41 !important;
  text-decoration: underline;
  font-weight: 500;
}

.cookie-banner a:hover {
  color: #a9cb58 !important;
}

.cookie-btn {
  background: #7cbd41;
  color: #ffffff;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  margin-left: 15px;
  white-space: nowrap;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
  font-weight: 500;
}

.cookie-btn:hover {
  background: #a9cb58;
}