.crm-lh {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: #000 !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: background 0.4s ease, border-bottom 0.4s ease, box-shadow 0.4s ease !important;
}
.crm-lh.crm-lh-scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  border-bottom: 1px solid #e5e7eb !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}
.crm-lh-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 32px !important;
  padding: 12px 0px 12px 0px !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
}
.crm-lh-logo {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}
.crm-lh-logo img {
  height: 28px !important;
  width: auto !important;
  display: block !important;
  transition: opacity 0.3s ease !important;
}
.crm-lh-right {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  margin-left: auto !important;
}
.crm-lh-social {
  display: flex !important;
  align-items: center !important;
  color: rgba(255, 255, 255, 0.6) !important;
  padding: 8px !important;
  border-radius: 50% !important;
  text-decoration: none !important;
  transition: background 0.2s, color 0.3s !important;
  line-height: 0 !important;
}
.crm-lh-social:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}
.crm-lh.crm-lh-scrolled .crm-lh-social {
  color: #9ca3af !important;
}
.crm-lh.crm-lh-scrolled .crm-lh-social:hover {
  background: #f3f4f6 !important;
  color: #374151 !important;
}
.crm-lh-divider {
  width: 1px !important;
  height: 20px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  margin: 0 8px !important;
  transition: background 0.3s ease !important;
}
.crm-lh.crm-lh-scrolled .crm-lh-divider {
  background: #e5e7eb !important;
}
.crm-lh-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: #ff5a00 !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 6px 16px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  transition: background 0.2s !important;
  white-space: nowrap !important;
}
.crm-lh-pill:hover {
  background: #e04e00 !important;
  color: #fff !important;
  text-decoration: none !important;
}
.crm-lh-pulse-dot {
  display: inline-block !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.8) !important;
  animation: crm-lh-pulse 1.6s ease-in-out infinite !important;
  flex-shrink: 0 !important;
}
@keyframes crm-lh-pulse {
  0%, 100% { opacity: 1 !important; transform: scale(1) !important; }
  50% { opacity: 0.4 !important; transform: scale(0.85) !important; }
}
.crm-lh-menu-btn {
  display: none !important;
  background: none !important;
  border: none !important;
  padding: 8px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  color: #fff !important;
  line-height: 0 !important;
  transition: background 0.2s, color 0.3s !important;
}
.crm-lh-menu-btn:hover { background: rgba(255, 255, 255, 0.1) !important; }
.crm-lh.crm-lh-scrolled .crm-lh-menu-btn {
  color: #4b5563 !important;
}
.crm-lh.crm-lh-scrolled .crm-lh-menu-btn:hover {
  background: #f3f4f6 !important;
}

/* Full-screen overlay */
.crm-lh-overlay {
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.4) !important;
  z-index: 1098 !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}
.crm-lh-overlay.open {
  display: block !important;
  opacity: 1 !important;
}

/* Left slide-in panel */
.crm-lh-panel {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: #fff !important;
  z-index: 1099 !important;
  transform: translateX(-100%) !important;
  transition: transform 0.5s ease-in-out !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12) !important;
}
.crm-lh-panel.open {
  transform: translateX(0) !important;
}
.crm-lh-panel-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 16px !important;
}
.crm-lh-panel-logo {
  height: 24px !important;
  width: auto !important;
  display: block !important;
}
.crm-lh-panel-close {
  background: none !important;
  border: none !important;
  padding: 8px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  color: #4b5563 !important;
  line-height: 0 !important;
  transition: background 0.2s !important;
}
.crm-lh-panel-close:hover {
  background: #f3f4f6 !important;
}
.crm-lh-panel-nav {
  display: flex !important;
  flex-direction: column !important;
  padding: 8px 12px !important;
}
.crm-lh-panel-link {
  display: flex !important;
  align-items: center !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #111827 !important;
  text-decoration: none !important;
  padding: 14px 12px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  transition: background 0.2s !important;
}
.crm-lh-panel-link:hover {
  text-decoration: none !important;
}
.crm-lh-panel-social {
  margin-top: auto !important;
  padding: 20px 24px 28px !important;
  border-top: 1px solid #e5e7eb !important;
}
.crm-lh-panel-social-label {
  font-size: 10px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: #9ca3af !important;
  font-weight: 700 !important;
  margin: 0 0 12px !important;
}
.crm-lh-panel-social-icons {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
.crm-lh-panel-social-icon {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 48px !important;
  border-radius: 16px !important;
  background: #f9fafb !important;
  border: 1px solid #e5e7eb !important;
  color: #4b5563 !important;
  text-decoration: none !important;
  transition: background 0.2s !important;
  line-height: 0 !important;
}
.crm-lh-panel-social-icon:hover {
  background: #f3f4f6 !important;
}

/* Nav links */
.crm-lh-nav {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.crm-lh-nav-link {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none !important;
  padding: 6px 16px !important;
  border-radius: 8px !important;
  transition: background 0.2s, color 0.3s !important;
  white-space: nowrap !important;
}
.crm-lh.crm-lh-scrolled .crm-lh-nav-link {
  color: #374151 !important;
}
.crm-lh-nav-btn {
  display: inline-flex !important;
  align-items: center !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #fff !important;
  text-decoration: none !important;
  padding: 3px 16px !important;
  border: 2px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 999px !important;
  background: transparent !important;
  transition: background 0.2s, color 0.3s, border-color 0.3s !important;
  white-space: nowrap !important;
}
.crm-lh-nav-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  text-decoration: none !important;
}
.crm-lh.crm-lh-scrolled .crm-lh-nav-btn {
  color: #6f6f6f !important;
  border-color: #6f6f6f !important;
}
.crm-lh.crm-lh-scrolled .crm-lh-nav-btn:hover {
  background: #f3f4f6 !important;
}

@media (max-width: 767px) {
  .crm-lh-inner {  gap: 12px !important; }
  .crm-lh-desktop-right { display: none !important; }
  .crm-lh-desktop-nav { display: none !important; }
  .crm-lh-menu-btn { display: inline-flex !important; }
  .crm-lh-panel-logo {
    height: 1.5rem !important;
  }
  .crm-lh-logo img{
    height: 1.5rem !important;
  }
  .crm-lh-pill{
    margin-right: 1rem !important;
  }
  
}
@media (min-width: 768px) {
  .crm-lh-mobile-right { display: none !important; }
  .crm-lh-menu-btn { display: none !important; }
  .crm-lh-panel { display: none !important; }
  .crm-lh-overlay { display: none !important; }
}
