/* Critical first-paint styles extracted from inline to satisfy CSP */
/* FORCE LOVABLE HEART ICON TO NEVER SHOW */
/* This must be loaded first to override any Lovable injections */

/* Hide any elements that might be the lovable badge */
[class*="lovable"], 
[id*="lovable"], 
[data-lovable], 
.lovable-badge,
#lovable-badge,
[aria-label*="lovable" i],
[title*="lovable" i] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
  z-index: -1 !important;
}

/* Block any favicon that isn't our KIKO favicon */
link[rel*="icon"]:not([href*="kiko-favicon-dark.png"]) {
  display: none !important;
}

body {
  font-family: 'Outfit', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
}

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 767px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Cookie consent styling */
#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

#cookie-notice.show {
  transform: translateY(0);
}

/* Replaces inline style attribute for loader to avoid 'unsafe-inline' */
.initial-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  z-index: 9999;
}
