/* Offline pixel-assist for official i4 header + banner (no official JS) */

/* --- Header: fixed transparent over banner (official default) --- */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6144;
  width: 100%;
  height: 76px;
}

/* logo image fill 36x36 box */
.head-content .head-lf .logo img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* search placeholder needs visible text when empty of JS */
.head-content .search-placeholder {
  position: relative;
}

/* keep search popover closed until .show (official JS) */
.search-content {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.search-content.show {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* product mega panel on hover */
.header-pros-panel {
  display: none;
}
.header-wrapper:hover .header-pros-panel {
  display: block;
}

/* --- Banner: full-bleed first slide --- */
.swiper-banner {
  position: relative;
  width: 100%;
  min-width: 1260px;
  height: 700px;
  overflow: hidden;
}
.swiper-banner .swiper-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper-banner .swiper-slide {
  display: none !important;
  width: 100% !important;
  height: 700px !important;
  background-repeat: no-repeat !important;
  background-size: auto 100% !important;
  background-position: center center !important;
}
.swiper-banner .swiper-slide:first-child {
  display: block !important;
}

/* Download CTA: official only shows .active — ensure first wrap visible */
.swiper-banner .banner-down-wrap {
  opacity: 0;
  visibility: hidden;
}
.swiper-banner .banner-down-wrap.active {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 20 !important;
}

/* popover already: .banner-down-wrap:hover .swiper-down-popover { display:block } in index.css */

/* pagination dots layout like official bottom center-ish */
.swiper-banner .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 15;
  text-align: center;
  font-size: 0;
  pointer-events: none;
}
.swiper-banner .swiper-pagination-bullet {
  display: inline-block;
  box-sizing: border-box;
  width: 80px;
  height: 8px;
  border-radius: 100px;
  background-color: #ffffff;
  opacity: 0.6;
  margin: 0 5px;
}
.swiper-banner .swiper-pagination-bullet-active {
  opacity: 1;
}

/* hide JS modals so they never block */
.download-modal {
  display: none !important;
}

/* anchor ids used by nav */
#products,
#news {
  scroll-margin-top: 90px;
}

/* news section id if class only */
.news-container {
  scroll-margin-top: 90px;
}
.download-container {
  scroll-margin-top: 90px;
}

/* quick search links style */
.search-quick-list a {
  display: inline-block;
  margin: 0 10px 8px 0;
  font-size: 13px;
  color: #333;
}
.search-quick-list a:hover {
  color: #007aff;
}

/* min width parity with official */
.main-container,
.menu-banner-container {
  min-width: 1260px;
}


/* Logo exact like official header mark */
.head-content .head-lf .logo {
  width: 36px;
  height: 36px;
  display: block;
  flex-shrink: 0;
  overflow: hidden;
}
.head-content .head-lf .logo img {
  width: 36px !important;
  height: 36px !important;
  object-fit: contain;
  display: block;
}


/* Logo: official 84px mark scaled to 36 — no filters */
.head-content .head-lf .logo,
a.logo {
  width: 36px !important;
  height: 36px !important;
  display: inline-block !important;
  line-height: 0 !important;
  border-radius: 8px;
  overflow: hidden;
  background: transparent !important;
}
.head-content .head-lf .logo img,
a.logo img {
  width: 36px !important;
  height: 36px !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: none !important;
  opacity: 1 !important;
  border-radius: 8px;
}
