.cookie-notice {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(14,14,22,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 1.25rem 2rem;
}
.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-notice p {
  font-size: 0.875rem;
  color: #b8b4ae;
  margin: 0;
  line-height: 1.6;
}
.cookie-notice a {
  color: #c9a84c;
  text-decoration: underline;
}
.cookie-notice .btn {
  flex-shrink: 0;
  padding: 0.6rem 1.5rem;
}
@media (max-width: 640px) {
  .cookie-inner { flex-direction: column; gap: 1rem; }
  .cookie-notice .btn { width: 100%; justify-content: center; }
}
