.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--surface, #111);
  border-top: 1px solid var(--border-mid, #252525);
  padding: 20px clamp(24px, 4vw, 64px);
  animation: cookieSlideUp 0.4s var(--ease, ease) forwards;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-consent-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cookie-consent-text {
  flex: 1;
}
.cookie-consent-text p {
  font-size: 13px;
  color: var(--muted, #777);
  line-height: 1.6;
  margin-bottom: 4px;
}
.cookie-consent-link {
  font-size: 12px;
  color: var(--accent, #C9A96E);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-btn-reject {
  background: transparent;
  border: 1px solid var(--border-mid, #252525);
  color: var(--muted, #777);
}
.cookie-btn-reject:hover {
  border-color: var(--muted, #777);
  color: var(--text, #F5F5F0);
}
.cookie-btn-accept {
  background: var(--accent, #C9A96E);
  color: #0A0A0A;
}
.cookie-btn-accept:hover {
  filter: brightness(1.1);
}
@media (max-width: 768px) {
  .cookie-consent-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .cookie-consent-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
  }
}
