/* ==========================================================================
   FULL NAVBAR TAKEOVER SEARCH BAR (DESKTOP & MOBILE)
   ========================================================================== */

/* 1. Base trigger icon */
.header-inline-search-wrap {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

.header-inline-search-wrap .header-search-trigger-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  border-radius: 50% !important;
  border: none !important;
  background: transparent !important;
  color: #000000 !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: background 0.15s ease, transform 0.15s ease !important;
}

.header-inline-search-wrap .header-search-trigger-btn:hover {
  background: rgba(0, 0, 0, 0.06) !important;
  transform: scale(1.05) !important;
}

.header-inline-search-wrap .header-search-trigger-btn svg {
  width: 20px !important;
  height: 20px !important;
  stroke: currentColor !important;
  stroke-width: 2.2 !important;
  display: block !important;
}

/* Default hidden search container */
.header-search-field-container {
  display: none !important;
}

.header-search-results-dropdown {
  display: none !important;
}

/* ==========================================================================
   2. WHEN SEARCH IS ACTIVE — REPLACES THE ENTIRE NAVBAR COMPLETELY
   ========================================================================== */
.site-header.search-active,
body.header-search-active .site-header {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* Hide ALL other navbar elements when search is open */
.site-header.search-active > .mobile-menu-trigger,
.site-header.search-active > #btn-open-mobile-nav,
.site-header.search-active > #main-nav,
.site-header.search-active > .desktop-nav,
.site-header.search-active > .brand,
.site-header.search-active .header-actions > *:not(#header-inline-search-wrap),
body.header-search-active .site-header > .mobile-menu-trigger,
body.header-search-active .site-header > #btn-open-mobile-nav,
body.header-search-active .site-header > #main-nav,
body.header-search-active .site-header > .desktop-nav,
body.header-search-active .site-header > .brand,
body.header-search-active .site-header .header-actions > *:not(#header-inline-search-wrap) {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* Make search wrap occupy 100% of the navbar */
.site-header.search-active #header-inline-search-wrap,
body.header-search-active #header-inline-search-wrap {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: #ffffff !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 clamp(16px, 4vw, 48px) !important;
  box-sizing: border-box !important;
  animation: navbarSearchFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

@keyframes navbarSearchFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header.search-active #header-inline-search-wrap .header-search-trigger-btn,
body.header-search-active #header-inline-search-wrap .header-search-trigger-btn {
  display: none !important;
}

/* Full Width Search Field Container */
.site-header.search-active .header-search-field-container,
body.header-search-active .header-search-field-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  height: 100% !important;
  gap: 14px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

/* Search Icon inside the open bar (left) */
.header-search-field-container .header-search-lens-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 22px !important;
  height: 22px !important;
  color: #000000 !important;
  flex-shrink: 0 !important;
}

.header-search-field-container .header-search-lens-icon svg {
  width: 20px !important;
  height: 20px !important;
  stroke: #000000 !important;
  stroke-width: 2.2 !important;
}

/* Full Width Search Input */
.header-inline-search-input {
  flex: 1 !important;
  width: 100% !important;
  height: 100% !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  font-family: inherit !important;
  font-size: clamp(15px, 2.5vw, 17px) !important;
  font-weight: 500 !important;
  color: #000000 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.header-inline-search-input::placeholder {
  color: #71717a !important;
  font-weight: 400 !important;
}

/* Close Button (Right) */
.header-search-close-x {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0.05) !important;
  border: none !important;
  cursor: pointer !important;
  color: #000000 !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
  transition: all 0.2s ease !important;
}

.header-search-close-x:hover {
  background: #000000 !important;
  color: #ffffff !important;
  transform: rotate(90deg) !important;
}

.header-search-close-x svg {
  width: 18px !important;
  height: 18px !important;
  stroke: currentColor !important;
  stroke-width: 2.2 !important;
}

/* ==========================================================================
   3. LIVE SEARCH RESULTS DROPDOWN (FULL WIDTH UNDER NAVBAR)
   ========================================================================== */
.site-header.search-active .header-search-results-dropdown.is-visible,
body.header-search-active .header-search-results-dropdown.is-visible {
  display: flex !important;
  flex-direction: column !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background: #ffffff !important;
  border-top: 1px solid #e2e8f0 !important;
  border-bottom: 2px solid #000000 !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
  max-height: min(70vh, 520px) !important;
  overflow: hidden !important;
  z-index: 9998 !important;
  animation: ddFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

@keyframes ddFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.search-dd-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px clamp(16px, 4vw, 48px) !important;
  background: #f8fafc !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

.search-dd-count {
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: #64748b !important;
}

.search-dd-list {
  flex: 1 !important;
  overflow-y: auto !important;
  padding: 8px clamp(16px, 4vw, 48px) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.search-dd-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  color: inherit !important;
  transition: background 0.15s ease !important;
  gap: 14px !important;
}

.search-dd-item:hover,
.search-dd-item.is-focused {
  background: #f1f5f9 !important;
}

.search-dd-img-box {
  width: 48px !important;
  height: 38px !important;
  min-width: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 6px !important;
  padding: 2px !important;
  overflow: hidden !important;
}

.search-dd-img-box img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

.search-dd-info {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.search-dd-brand {
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: #94a3b8 !important;
}

.search-dd-name {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #0f172a !important;
}

.search-dd-price-box {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  flex-shrink: 0 !important;
}

.search-dd-price {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #000000 !important;
}

.search-dd-price.is-promo {
  color: #dc2626 !important;
}

.search-dd-old-price {
  font-size: 12px !important;
  color: #94a3b8 !important;
  text-decoration: line-through !important;
}

.search-dd-footer {
  padding: 12px clamp(16px, 4vw, 48px) !important;
  background: #f8fafc !important;
  border-top: 1px solid #f1f5f9 !important;
  text-align: center !important;
}

.search-dd-viewall-btn {
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #000000 !important;
  text-decoration: underline !important;
}

.search-dd-empty {
  padding: 28px 16px !important;
  text-align: center !important;
  font-size: 14px !important;
  color: #64748b !important;
}

/* Desktop: keep the complete navbar and expand search only inside its actions. */
@media (min-width: 769px) {
  .site-header.search-active > .mobile-menu-trigger,
  .site-header.search-active > #btn-open-mobile-nav,
  .site-header.search-active > #main-nav,
  .site-header.search-active > .desktop-nav,
  .site-header.search-active > .brand,
  .site-header.search-active .header-actions > *:not(#header-inline-search-wrap),
  body.header-search-active .site-header > .mobile-menu-trigger,
  body.header-search-active .site-header > #btn-open-mobile-nav,
  body.header-search-active .site-header > #main-nav,
  body.header-search-active .site-header > .desktop-nav,
  body.header-search-active .site-header > .brand,
  body.header-search-active .site-header .header-actions > *:not(#header-inline-search-wrap) {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    width: auto !important;
    height: auto !important;
    margin: initial !important;
    padding: initial !important;
    overflow: visible !important;
  }

  .site-header.search-active #header-inline-search-wrap,
  body.header-search-active #header-inline-search-wrap {
    position: relative !important;
    inset: auto !important;
    width: clamp(210px, 18vw, 300px) !important;
    min-width: 210px !important;
    height: 38px !important;
    z-index: 30 !important;
    padding: 0 !important;
    background: transparent !important;
    animation: none !important;
  }

  .site-header.search-active .header-search-field-container,
  body.header-search-active .header-search-field-container {
    height: 38px !important;
    padding: 0 8px 0 12px !important;
    gap: 8px !important;
    background: #ffffff !important;
    border: 1px solid #d7d7d7 !important;
  }

  .header-inline-search-input {
    min-width: 0 !important;
    font-size: 14px !important;
  }

  .header-search-close-x {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    background: transparent !important;
  }

  .site-header.search-active .header-search-results-dropdown.is-visible,
  body.header-search-active .header-search-results-dropdown.is-visible {
    top: calc(100% + 10px) !important;
    left: auto !important;
    right: 0 !important;
    width: min(440px, 92vw) !important;
    border: 1px solid #dedede !important;
    border-bottom: 1px solid #dedede !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12) !important;
  }
}

/* Desktop search: keep navbar stable. Full-width takeover is mobile-only. */
@media (min-width: 769px) {
  .site-header.search-active,
  body.header-search-active .site-header {
    background: #ffffff !important;
  }

  .site-header.search-active > .mobile-menu-trigger,
  .site-header.search-active > #btn-open-mobile-nav,
  .site-header.search-active > #main-nav,
  .site-header.search-active > .desktop-nav,
  .site-header.search-active > .brand,
  .site-header.search-active .header-actions > *:not(#header-inline-search-wrap),
  body.header-search-active .site-header > .mobile-menu-trigger,
  body.header-search-active .site-header > #btn-open-mobile-nav,
  body.header-search-active .site-header > #main-nav,
  body.header-search-active .site-header > .desktop-nav,
  body.header-search-active .site-header > .brand,
  body.header-search-active .site-header .header-actions > *:not(#header-inline-search-wrap) {
    display: initial !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    width: auto !important;
    height: auto !important;
    margin: initial !important;
    padding: initial !important;
    overflow: visible !important;
  }

  body.header-search-active .site-header .desktop-nav,
  .site-header.search-active .desktop-nav {
    display: flex !important;
  }

  body.header-search-active .site-header .brand,
  .site-header.search-active .brand {
    display: flex !important;
  }

  body.header-search-active .site-header .header-actions,
  .site-header.search-active .header-actions {
    display: inline-flex !important;
  }

  .site-header.search-active #header-inline-search-wrap,
  body.header-search-active #header-inline-search-wrap {
    position: relative !important;
    inset: auto !important;
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    background: transparent !important;
    z-index: 120 !important;
    animation: none !important;
    flex: 0 0 36px !important;
  }

  .site-header.search-active #header-inline-search-wrap .header-search-trigger-btn,
  body.header-search-active #header-inline-search-wrap .header-search-trigger-btn {
    display: inline-flex !important;
  }

  .site-header.search-active .header-search-field-container,
  body.header-search-active .header-search-field-container {
    position: absolute !important;
    top: 50% !important;
    right: 0 !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    width: min(340px, 30vw) !important;
    height: 46px !important;
    gap: 10px !important;
    padding: 0 10px 0 14px !important;
    background: #fff !important;
    border: 1px solid rgba(0,0,0,.16) !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.12) !important;
    z-index: 125 !important;
  }

  .site-header.search-active .header-inline-search-input,
  body.header-search-active .header-inline-search-input {
    height: 44px !important;
    font-size: 14px !important;
  }

  .site-header.search-active .header-search-results-dropdown.is-visible,
  body.header-search-active .header-search-results-dropdown.is-visible {
    top: calc(100% + 8px) !important;
    left: auto !important;
    right: 0 !important;
    width: min(420px, 40vw) !important;
    border: 1px solid rgba(0,0,0,.12) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,.16) !important;
  }
}

/* Final desktop safeguard: search opens as an overlay from the icon and never
   participates in navbar layout width. Mobile keeps the full-width takeover. */
@media (min-width: 1025px) {
  .site-header.search-active,
  body.header-search-active .site-header {
    display: flex !important;
    grid-template-columns: none !important;
  }

  .site-header.search-active .desktop-nav,
  body.header-search-active .site-header .desktop-nav {
    display: flex !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    justify-content: center !important;
  }

  .site-header.search-active .header-actions,
  body.header-search-active .site-header .header-actions {
    flex: 0 0 auto !important;
    min-width: max-content !important;
  }

  .site-header.search-active #header-inline-search-wrap,
  body.header-search-active #header-inline-search-wrap {
    flex: 0 0 36px !important;
    width: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
  }

  .site-header.search-active .header-search-field-container,
  body.header-search-active .header-search-field-container {
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: min(320px, 28vw) !important;
    min-width: 260px !important;
    max-width: 320px !important;
  }
}

/* ==========================================================================
   FINAL DESKTOP OVERRIDE — search must never reshape the navbar
   ========================================================================== */
@media (min-width: 1025px) {
  body .site-header,
  body.header-search-active .site-header,
  body .site-header.search-active {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: clamp(18px, 2vw, 34px) !important;
    grid-template-columns: none !important;
  }

  body .site-header > .mobile-menu-trigger,
  body .site-header > #btn-open-mobile-nav,
  body.header-search-active .site-header > .mobile-menu-trigger,
  body.header-search-active .site-header > #btn-open-mobile-nav,
  body .site-header.search-active > .mobile-menu-trigger,
  body .site-header.search-active > #btn-open-mobile-nav {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    width: 0 !important;
    min-width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  body .site-header > .brand,
  body.header-search-active .site-header > .brand,
  body .site-header.search-active > .brand {
    display: flex !important;
    flex: 0 0 160px !important;
    width: 160px !important;
    min-width: 160px !important;
    max-width: 160px !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  body .site-header > .desktop-nav,
  body.header-search-active .site-header > .desktop-nav,
  body .site-header.search-active > .desktop-nav,
  body .site-header > #main-nav,
  body.header-search-active .site-header > #main-nav,
  body .site-header.search-active > #main-nav {
    display: flex !important;
    position: absolute !important;
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    height: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(18px, 2.2vw, 34px) !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    overflow: visible !important;
  }

  body .site-header .desktop-nav > *,
  body .site-header #main-nav > * {
    flex: 0 0 auto !important;
  }

  body .site-header .header-actions,
  body.header-search-active .site-header .header-actions,
  body .site-header.search-active .header-actions {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 0 0 auto !important;
    min-width: max-content !important;
    gap: 16px !important;
    margin-left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.header-search-active .site-header .header-actions > *:not(#header-inline-search-wrap),
  body .site-header.search-active .header-actions > *:not(#header-inline-search-wrap) {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  body .site-header #header-inline-search-wrap,
  body.header-search-active .site-header #header-inline-search-wrap,
  body .site-header.search-active #header-inline-search-wrap {
    position: relative !important;
    display: inline-flex !important;
    flex: 0 0 36px !important;
    width: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    z-index: 80 !important;
    animation: none !important;
  }

  body.header-search-active .site-header #header-inline-search-wrap .header-search-trigger-btn,
  body .site-header.search-active #header-inline-search-wrap .header-search-trigger-btn {
    display: none !important;
  }

  body.header-search-active .site-header .header-search-field-container,
  body .site-header.search-active .header-search-field-container {
    position: absolute !important;
    top: 50% !important;
    right: 0 !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 240px !important;
    min-width: 220px !important;
    max-width: 240px !important;
    height: 42px !important;
    gap: 8px !important;
    padding: 0 10px 0 13px !important;
    background: #ffffff !important;
    border: 1px solid #d8d8d8 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform-origin: right center !important;
    z-index: 90 !important;
  }

  body.header-search-active .site-header .header-inline-search-input,
  body .site-header.search-active .header-inline-search-input {
    height: 40px !important;
    min-width: 0 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
  }

  body.header-search-active .site-header .header-search-close-x,
  body .site-header.search-active .header-search-close-x {
    width: 28px !important;
    min-width: 28px !important;
    height: 28px !important;
    min-height: 28px !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.header-search-active .site-header .header-search-close-x:hover,
  body .site-header.search-active .header-search-close-x:hover {
    color: #000000 !important;
    background: transparent !important;
    transform: none !important;
  }

  body.header-search-active .site-header .header-search-results-dropdown.is-visible,
  body .site-header.search-active .header-search-results-dropdown.is-visible {
    top: calc(100% + 8px) !important;
    right: 0 !important;
    left: auto !important;
    width: 300px !important;
    max-width: min(300px, 82vw) !important;
    border: 1px solid #d8d8d8 !important;
    border-bottom: 1px solid #d8d8d8 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    animation: none !important;
  }
}

/* Desktop search is anchored to the right edge of the loupe circle. It opens
   leftward as an overlay, with compact widths so the nav links never move. */
@media (min-width: 1025px) {
  body .site-header #header-inline-search-wrap,
  body.header-search-active .site-header #header-inline-search-wrap,
  body .site-header.search-active #header-inline-search-wrap {
    position: relative !important;
    flex: 0 0 36px !important;
    width: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    overflow: visible !important;
  }

  body.header-search-active .site-header .header-search-field-container,
  body .site-header.search-active .header-search-field-container {
    right: 0 !important;
    left: auto !important;
    width: 190px !important;
    min-width: 180px !important;
    max-width: 190px !important;
    height: 40px !important;
    padding: 0 8px 0 10px !important;
    border: 1px solid #d8d8d8 !important;
    box-shadow: none !important;
  }

  body.header-search-active .site-header .header-search-results-dropdown.is-visible,
  body .site-header.search-active .header-search-results-dropdown.is-visible {
    right: 0 !important;
    left: auto !important;
    width: 260px !important;
    max-width: 260px !important;
    box-shadow: none !important;
  }
}

@media (min-width: 1200px) {
  body.header-search-active .site-header .header-search-field-container,
  body .site-header.search-active .header-search-field-container {
    width: 205px !important;
    max-width: 205px !important;
  }
}

@media (min-width: 1440px) {
  body.header-search-active .site-header .header-search-field-container,
  body .site-header.search-active .header-search-field-container {
    width: 220px !important;
    max-width: 220px !important;
  }
}

/* Keep the three editorial links exactly centred and let the Óculos panel
   use the full header width. The search remains overlaid at the right. */
@media (min-width: 1025px) {
  body .site-header,
  body.header-search-active .site-header,
  body .site-header.search-active {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  }

  body .site-header > .desktop-nav,
  body.header-search-active .site-header > .desktop-nav,
  body .site-header.search-active > .desktop-nav,
  body .site-header > #main-nav,
  body.header-search-active .site-header > #main-nav,
  body .site-header.search-active > #main-nav {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    gap: clamp(28px, 3vw, 46px) !important;
  }

  body .site-header > .brand {
    justify-self: start !important;
  }

  body .site-header .header-actions {
    justify-self: end !important;
  }

  body .site-header .mega-melin {
    position: absolute !important;
    top: 76px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
  }

  body .site-header .mega-melin-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
