#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1rem 1.5rem;
  background: #013f54;
  color: #fff;
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.25);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

#cookie-notice.visible {
  transform: translateY(0);
  opacity: 1;
}

#cookie-notice p {
  margin: 0;
  flex: 1 1 auto;
  max-width: 800px;
}

#cookie-notice a {
  color: #f69318;
  text-decoration: underline;
}

#cookie-notice a:hover {
  color: #ffb347;
}

#cookie-notice-btn {
  flex-shrink: 0;
  background: #059598;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.55em 1.6em;
  font-family: 'Open Sans Condensed', 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s;
}

#cookie-notice-btn:hover {
  background: #047a7c;
}

@media (max-width: 600px) {
  #cookie-notice {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
    padding: 1rem;
  }
}
