#cookie-consent {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 10000;
  padding: 16px;
  pointer-events: none;
}

#cookie-consent .cookie-consent-panel {
  pointer-events: auto;
  max-width: 42rem;
  margin: 0 auto;
  padding: 18px 20px;
  border-radius: 20px;
  background: #f8f1e5;
  color: #1a1815;
  border: 1px solid #6b5e51;
  box-shadow: 0 12px 40px rgba(26, 24, 21, 0.18);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

#cookie-consent h2 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

#cookie-consent p {
  margin: 0 0 14px;
  color: #3a1f0f;
}

#cookie-consent a {
  color: #c66e2e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#cookie-consent .cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#cookie-consent button {
  cursor: pointer;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

#cookie-consent button:active {
  transform: scale(0.98);
}

#cookie-consent .cookie-accept {
  background: #1a1815;
  color: #f8f1e5;
}

#cookie-consent .cookie-reject {
  background: transparent;
  color: #1a1815;
  border: 1px solid #6b5e51;
}

@media (prefers-reduced-motion: reduce) {
  #cookie-consent button {
    transition: none;
  }
}

@media (max-width: 480px) {
  #cookie-consent {
    padding: 12px;
  }

  #cookie-consent .cookie-consent-panel {
    padding: 16px;
  }

  #cookie-consent .cookie-consent-actions {
    flex-direction: column;
  }

  #cookie-consent button {
    width: 100%;
  }
}
