/* ===========================================
   FELUXE CAT LITTER - HEADER (Final Version)
   =========================================== */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 0.75rem 0;
  box-shadow: 0 1px 30px var(--shadow-light);
  transition: var(--transition-fast);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 clamp(0.75rem, 3vw, 2rem);
  min-height: 60px;
  gap: 1rem;
}

.logo {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
  justify-self: start;
  text-decoration: none !important;
}
.logo img {
  width: clamp(28px, 6vw, 60px);
  height: clamp(28px, 6vw, 60px);
}
.logo h1 {
  color: var(--primary-blue) !important;
  font-size: clamp(1rem, 2.5vw, 2rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cat-center {
  grid-column: 2;
  justify-self: center;
  width: clamp(45px, 7vw, 90px);
  height: clamp(45px, 7vw, 90px);
  cursor: pointer;
  z-index: 1001;
}
#catWrapper, #catAnimation, #catWrapper lottie-player {
  width: 100% !important;
  height: 100% !important;
}

.nav-links {
  grid-column: 3;
  display: none;
  list-style: none;
  gap: clamp(1rem, 2.5vw, 3rem);
  margin: 0;
  padding: 0;
  z-index: 1001;
  justify-self: end;
}
.nav-links a {
  text-decoration: none;
  color: var(--primary-blue);
  font-weight: 500;
}
.mobile-menu-toggle {
  grid-column: 3;
  justify-self: end;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  z-index: 1002;
  padding: 0.5rem;
}
.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-purple);
  margin: 3px 0;
  transition: 0.3s ease;
  border-radius: 2px;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 84px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 84px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.4s ease;
  z-index: 1001;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-links {
  list-style: none;
  text-align: center;
  padding: 0;
}
.mobile-menu-links li {
  margin: 1.5rem 0;
}
.mobile-menu-links a {
  text-decoration: none;
  color: var(--primary-blue);
  font-size: 1.8rem;
  font-weight: 600;
}
@media (min-width: 1200px) {
  .nav-links {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
}