/*
  Maido Customs Stage 4T
  Unifies the live PHP site's header and hero behaviour across home, category,
  product, search, contact, account and information pages.

  Goal:
  - Every page uses the same transparent header-over-hero layout as the home page.
  - Every inner page uses the same hero image/crop/height family as the home page.
  - Reduced browser widths switch cleanly to the drawer menu instead of creating a
    half-desktop / half-mobile broken header.
*/

:root {
  --maido-4t-desktop-header-height: 124px;
  --maido-4t-mobile-header-height: 92px;
  --maido-4t-menu-font: Impact, Haettenschweiler, "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  --maido-4t-hero-image: url('/image/catalog/imgs/banner-1.png');
  --maido-4t-header-side-padding: clamp(34px, 3.2vw, 58px);
}

html {
  scroll-padding-top: var(--maido-4t-desktop-header-height);
}

/* -------------------------------------------------------------------------
   ONE HEADER STYLE FOR HOME + INNER HERO PAGES
   ------------------------------------------------------------------------- */
html body.has-hero-header .site-header,
html body.has-hero-header .site-header.site-header--hero,
html body.maido-stage4i-inner-page .site-header,
html body.maido-stage4i-inner-page .site-header.site-header--hero {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10020 !important;
  height: var(--maido-4t-desktop-header-height) !important;
  min-height: var(--maido-4t-desktop-header-height) !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  color: #050505 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html body.has-hero-header .site-header .primary-header,
html body.maido-stage4i-inner-page .site-header .primary-header {
  height: var(--maido-4t-desktop-header-height) !important;
  min-height: var(--maido-4t-desktop-header-height) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

html body.has-hero-header .site-header.maido-stage3n-scrolled,
html body.has-hero-header .site-header.is-scrolled,
html body.has-hero-header .site-header.maido-scrolled,
html body.maido-stage4i-inner-page .site-header.maido-stage3n-scrolled,
html body.maido-stage4i-inner-page .site-header.is-scrolled,
html body.maido-stage4i-inner-page .site-header.maido-scrolled {
  position: fixed !important;
  background: rgba(255,255,255,.96) !important;
  border-bottom: 1px solid rgba(0,0,0,.08) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.06) !important;
}

/* -------------------------------------------------------------------------
   FULL DESKTOP: SAME AS HOME PAGE
   ------------------------------------------------------------------------- */
@media (min-width: 1181px) {
  html body.has-hero-header .site-header .menu-toggle,
  html body.maido-stage4i-inner-page .site-header .menu-toggle {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  html body.has-hero-header .site-header .container.header-grid,
  html body.has-hero-header .site-header .container.header-grid--landing,
  html body.maido-stage4i-inner-page .site-header .container.header-grid,
  html body.maido-stage4i-inner-page .site-header .container.header-grid--landing {
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    height: var(--maido-4t-desktop-header-height) !important;
    min-height: var(--maido-4t-desktop-header-height) !important;
    margin: 0 !important;
    padding-left: var(--maido-4t-header-side-padding) !important;
    padding-right: var(--maido-4t-header-side-padding) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
  }

  html body.has-hero-header .site-header .brand--center,
  html body.maido-stage4i-inner-page .site-header .brand--center {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    justify-self: auto !important;
    margin: 0 !important;
    z-index: 4 !important;
  }

  html body.has-hero-header .site-header .brand__logo,
  html body.has-hero-header .site-header .brand__logo--full,
  html body.has-hero-header .site-header .brand img,
  html body.maido-stage4i-inner-page .site-header .brand__logo,
  html body.maido-stage4i-inner-page .site-header .brand__logo--full,
  html body.maido-stage4i-inner-page .site-header .brand img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-height: 96px !important;
    max-width: 118px !important;
    filter: none !important;
    opacity: 1 !important;
  }

  html body.has-hero-header .site-header .main-nav,
  html body.has-hero-header .site-header .main-nav[data-main-nav],
  html body.maido-stage4i-inner-page .site-header .main-nav,
  html body.maido-stage4i-inner-page .site-header .main-nav[data-main-nav] {
    position: relative !important;
    inset: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: calc(50vw - 105px) !important;
    height: var(--maido-4t-desktop-header-height) !important;
    min-height: var(--maido-4t-desktop-header-height) !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: clamp(24px, 2.7vw, 46px) !important;
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    z-index: 5 !important;
  }

  html body.has-hero-header .site-header .main-nav .maido-stage3r-mobile-contact,
  html body.maido-stage4i-inner-page .site-header .main-nav .maido-stage3r-mobile-contact {
    display: inline-flex !important;
  }

  html body.has-hero-header .site-header .main-nav .nav-item,
  html body.maido-stage4i-inner-page .site-header .main-nav .nav-item {
    display: block !important;
    position: relative !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  html body.has-hero-header .site-header .main-nav .nav-link,
  html body.has-hero-header .site-header .main-nav > a,
  html body.has-hero-header .site-header .main-nav .nav-link > span:first-child,
  html body.maido-stage4i-inner-page .site-header .main-nav .nav-link,
  html body.maido-stage4i-inner-page .site-header .main-nav > a,
  html body.maido-stage4i-inner-page .site-header .main-nav .nav-link > span:first-child {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #050505 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-family: var(--maido-4t-menu-font) !important;
    font-size: clamp(20px, 1.5vw, 27px) !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: -.018em !important;
    text-transform: none !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    text-shadow: none !important;
  }

  html body.has-hero-header .site-header .main-nav .nav-caret,
  html body.maido-stage4i-inner-page .site-header .main-nav .nav-caret {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 14px !important;
    height: 14px !important;
    margin-left: 7px !important;
    color: #666 !important;
    font-size: 14px !important;
    line-height: 1 !important;
    opacity: .72 !important;
    transform: none !important;
  }

  html body.has-hero-header .site-header .header-actions,
  html body.maido-stage4i-inner-page .site-header .header-actions {
    position: relative !important;
    justify-self: auto !important;
    margin-left: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: clamp(18px, 1.95vw, 30px) !important;
    width: auto !important;
    max-width: calc(50vw - 105px) !important;
    height: var(--maido-4t-desktop-header-height) !important;
    min-height: var(--maido-4t-desktop-header-height) !important;
    color: #050505 !important;
    z-index: 5 !important;
  }

  html body.has-hero-header .site-header .header-icon,
  html body.has-hero-header .site-header .header-icon span,
  html body.has-hero-header .site-header .maido-stage3r-envelope-contact,
  html body.has-hero-header .site-header .maido-stage3s-cart-icon,
  html body.maido-stage4i-inner-page .site-header .header-icon,
  html body.maido-stage4i-inner-page .site-header .header-icon span,
  html body.maido-stage4i-inner-page .site-header .maido-stage3r-envelope-contact,
  html body.maido-stage4i-inner-page .site-header .maido-stage3s-cart-icon {
    color: #050505 !important;
  }

  html body.has-hero-header .site-header .maido-stage3k-menu-panel,
  html body.maido-stage4i-inner-page .site-header .maido-stage3k-menu-panel {
    top: calc(100% + 18px) !important;
    z-index: 10050 !important;
  }
}

/* -------------------------------------------------------------------------
   REDUCED BROWSER / TABLET / PHONE: DRAWER MENU, NO BROKEN HALF-DESKTOP ROW
   ------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  html {
    scroll-padding-top: var(--maido-4t-mobile-header-height);
  }

  html body.has-hero-header .site-header,
  html body.has-hero-header .site-header.site-header--hero,
  html body.maido-stage4i-inner-page .site-header,
  html body.maido-stage4i-inner-page .site-header.site-header--hero {
    height: var(--maido-4t-mobile-header-height) !important;
    min-height: var(--maido-4t-mobile-header-height) !important;
    background: transparent !important;
  }

  html body.has-hero-header .site-header .primary-header,
  html body.maido-stage4i-inner-page .site-header .primary-header {
    height: var(--maido-4t-mobile-header-height) !important;
    min-height: var(--maido-4t-mobile-header-height) !important;
    background: transparent !important;
    border: 0 !important;
  }

  html body.has-hero-header .site-header .container.header-grid,
  html body.has-hero-header .site-header .container.header-grid--landing,
  html body.maido-stage4i-inner-page .site-header .container.header-grid,
  html body.maido-stage4i-inner-page .site-header .container.header-grid--landing {
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    height: var(--maido-4t-mobile-header-height) !important;
    min-height: var(--maido-4t-mobile-header-height) !important;
    margin: 0 !important;
    padding-left: clamp(16px, 3vw, 28px) !important;
    padding-right: clamp(16px, 3vw, 28px) !important;
    display: grid !important;
    grid-template-columns: 46px minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: clamp(10px, 2vw, 18px) !important;
  }

  html body.has-hero-header .site-header .menu-toggle,
  html body.maido-stage4i-inner-page .site-header .menu-toggle {
    display: inline-grid !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: start !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: rgba(255,255,255,.88) !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    border-radius: 999px !important;
    box-shadow: 0 8px 18px rgba(0,0,0,.08) !important;
    color: #050505 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 10060 !important;
  }

  html body.has-hero-header .site-header .menu-toggle span,
  html body.maido-stage4i-inner-page .site-header .menu-toggle span {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    margin: 3px 0 !important;
    background: #050505 !important;
    border-radius: 999px !important;
  }

  html body.has-hero-header .site-header .brand--center,
  html body.maido-stage4i-inner-page .site-header .brand--center {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    justify-self: center !important;
    align-self: center !important;
    margin: 0 !important;
    z-index: 4 !important;
  }

  html body.has-hero-header .site-header .brand__logo,
  html body.has-hero-header .site-header .brand__logo--full,
  html body.has-hero-header .site-header .brand img,
  html body.maido-stage4i-inner-page .site-header .brand__logo,
  html body.maido-stage4i-inner-page .site-header .brand__logo--full,
  html body.maido-stage4i-inner-page .site-header .brand img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-height: 76px !important;
    max-width: 96px !important;
    filter: none !important;
    opacity: 1 !important;
  }

  html body.has-hero-header .site-header .header-actions,
  html body.maido-stage4i-inner-page .site-header .header-actions {
    justify-self: end !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: clamp(12px, 2.2vw, 20px) !important;
    height: var(--maido-4t-mobile-header-height) !important;
    min-height: var(--maido-4t-mobile-header-height) !important;
    color: #050505 !important;
    z-index: 4 !important;
  }

  html body.has-hero-header .site-header .header-icon,
  html body.has-hero-header .site-header .maido-stage3r-envelope-contact,
  html body.has-hero-header .site-header .maido-stage3s-cart-icon,
  html body.maido-stage4i-inner-page .site-header .header-icon,
  html body.maido-stage4i-inner-page .site-header .maido-stage3r-envelope-contact,
  html body.maido-stage4i-inner-page .site-header .maido-stage3s-cart-icon {
    color: #050505 !important;
  }

  html body.has-hero-header .site-header .main-nav,
  html body.has-hero-header .site-header .main-nav[data-main-nav],
  html body.maido-stage4i-inner-page .site-header .main-nav,
  html body.maido-stage4i-inner-page .site-header .main-nav[data-main-nav] {
    display: none !important;
    position: absolute !important;
    top: calc(100% - 2px) !important;
    left: clamp(14px, 3vw, 26px) !important;
    right: auto !important;
    bottom: auto !important;
    width: min(380px, calc(100vw - 32px)) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: calc(100vh - var(--maido-4t-mobile-header-height) - 16px) !important;
    overflow-y: auto !important;
    margin: 0 !important;
    padding: 8px 0 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    background: rgba(255,255,255,.985) !important;
    border: 1px solid rgba(0,0,0,.09) !important;
    border-radius: 16px !important;
    box-shadow: 0 22px 52px rgba(0,0,0,.18) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    z-index: 10055 !important;
  }

  html body.has-hero-header .site-header .main-nav.is-open,
  html body.has-hero-header .site-header .main-nav.main-nav--open,
  html body.has-hero-header.maido-mobile-menu-open .site-header .main-nav,
  html body.maido-stage4i-inner-page .site-header .main-nav.is-open,
  html body.maido-stage4i-inner-page .site-header .main-nav.main-nav--open,
  html body.maido-stage4i-inner-page.maido-mobile-menu-open .site-header .main-nav {
    display: flex !important;
  }

  html body.has-hero-header .site-header .main-nav .nav-item,
  html body.maido-stage4i-inner-page .site-header .main-nav .nav-item {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
  }

  html body.has-hero-header .site-header .main-nav .nav-link,
  html body.has-hero-header .site-header .main-nav > a,
  html body.maido-stage4i-inner-page .site-header .main-nav .nav-link,
  html body.maido-stage4i-inner-page .site-header .main-nav > a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-height: 52px !important;
    margin: 0 !important;
    padding: 0 20px !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: #050505 !important;
    font-family: var(--maido-4t-menu-font) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: -.018em !important;
    text-transform: none !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  html body.has-hero-header .site-header .main-nav .maido-stage3r-mobile-contact,
  html body.maido-stage4i-inner-page .site-header .main-nav .maido-stage3r-mobile-contact {
    display: flex !important;
  }

  html body.has-hero-header .site-header .main-nav .maido-stage3k-menu-panel,
  html body.maido-stage4i-inner-page .site-header .main-nav .maido-stage3k-menu-panel {
    display: none !important;
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 0 8px 0 !important;
    background: #f6f6f6 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  html body.has-hero-header .site-header .main-nav .nav-item.is-mobile-expanded > .maido-stage3k-menu-panel,
  html body.maido-stage4i-inner-page .site-header .main-nav .nav-item.is-mobile-expanded > .maido-stage3k-menu-panel {
    display: block !important;
  }

  html body.has-hero-header .site-header .main-nav .maido-stage3k-tree,
  html body.has-hero-header .site-header .main-nav .maido-stage3k-level-1,
  html body.has-hero-header .site-header .main-nav .maido-stage3k-level-2,
  html body.has-hero-header .site-header .main-nav .maido-stage3k-level-3,
  html body.maido-stage4i-inner-page .site-header .main-nav .maido-stage3k-tree,
  html body.maido-stage4i-inner-page .site-header .main-nav .maido-stage3k-level-1,
  html body.maido-stage4i-inner-page .site-header .main-nav .maido-stage3k-level-2,
  html body.maido-stage4i-inner-page .site-header .main-nav .maido-stage3k-level-3 {
    position: static !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  html body.has-hero-header .site-header .main-nav .maido-stage3k-row,
  html body.has-hero-header .site-header .main-nav .maido-stage3k-view-all,
  html body.maido-stage4i-inner-page .site-header .main-nav .maido-stage3k-row,
  html body.maido-stage4i-inner-page .site-header .main-nav .maido-stage3k-view-all {
    min-height: 44px !important;
    padding: 0 22px 0 34px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(0,0,0,.05) !important;
    color: #111 !important;
  }

  html body.has-hero-header .site-header .main-nav .maido-stage3k-category-link,
  html body.has-hero-header .site-header .main-nav .maido-stage3k-view-all span,
  html body.maido-stage4i-inner-page .site-header .main-nav .maido-stage3k-category-link,
  html body.maido-stage4i-inner-page .site-header .main-nav .maido-stage3k-view-all span {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #111 !important;
    text-decoration: none !important;
  }
}

@media (max-width: 560px) {
  html body.has-hero-header .site-header .container.header-grid,
  html body.has-hero-header .site-header .container.header-grid--landing,
  html body.maido-stage4i-inner-page .site-header .container.header-grid,
  html body.maido-stage4i-inner-page .site-header .container.header-grid--landing {
    grid-template-columns: 44px minmax(0, 1fr) auto !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    gap: 8px !important;
  }

  html body.has-hero-header .site-header .brand__logo,
  html body.has-hero-header .site-header .brand__logo--full,
  html body.has-hero-header .site-header .brand img,
  html body.maido-stage4i-inner-page .site-header .brand__logo,
  html body.maido-stage4i-inner-page .site-header .brand__logo--full,
  html body.maido-stage4i-inner-page .site-header .brand img {
    max-height: 68px !important;
    max-width: 84px !important;
  }

  html body.has-hero-header .site-header .header-actions,
  html body.maido-stage4i-inner-page .site-header .header-actions {
    gap: 9px !important;
  }

  html body.has-hero-header .site-header .maido-stage3r-envelope-contact,
  html body.maido-stage4i-inner-page .site-header .maido-stage3r-envelope-contact {
    display: none !important;
  }
}

/* -------------------------------------------------------------------------
   SAME HERO IMAGE + CROP BEHAVIOUR ON HOME AND INNER PAGES
   ------------------------------------------------------------------------- */
html body.maido-stage3k-home .landing-hero,
html body.maido-stage4i-inner-page .maido-stage4i-inner-hero {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  height: min(100vh, 50vw) !important;
  min-height: 640px !important;
  max-height: 1000px !important;
  background-image: var(--maido-4t-hero-image) !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #ffffff !important;
  color: #fff !important;
  filter: none !important;
}

html body.maido-stage3k-home .landing-hero::before,
html body.maido-stage3k-home .landing-hero::after,
html body.maido-stage3k-home .landing-hero .landing-hero__shade,
html body.maido-stage4i-inner-page .maido-stage4i-inner-hero::before,
html body.maido-stage4i-inner-page .maido-stage4i-inner-hero::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

html body.maido-stage4i-inner-page .maido-stage4i-inner-hero__content,
html body.maido-stage3k-home .landing-hero__inner {
  position: absolute !important;
  left: clamp(50px, 4.8vw, 92px) !important;
  right: auto !important;
  top: auto !important;
  bottom: clamp(128px, 10.8vw, 205px) !important;
  width: auto !important;
  max-width: min(980px, 76vw) !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  z-index: 2 !important;
}

html body.maido-stage4i-inner-page .maido-stage4i-inner-hero__kicker,
html body.maido-stage3k-home .landing-hero__eyebrow {
  margin: 0 0 14px !important;
  font-family: var(--maido-4t-menu-font) !important;
  font-size: clamp(13px, .95vw, 17px) !important;
  font-weight: 700 !important;
  letter-spacing: .22em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  color: #fff !important;
  text-shadow: 0 2px 5px rgba(0,0,0,.35) !important;
}

html body.maido-stage4i-inner-page .maido-stage4i-inner-hero__title,
html body.maido-stage3k-home .landing-hero h1,
html body.maido-stage3k-home .landing-hero__title {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  font-family: var(--maido-4t-menu-font) !important;
  font-size: clamp(32px, 2.72vw, 50px) !important;
  font-weight: 900 !important;
  line-height: .96 !important;
  letter-spacing: -.018em !important;
  color: #fff !important;
  text-transform: uppercase !important;
  text-shadow: 0 2px 5px rgba(0,0,0,.26) !important;
  white-space: nowrap !important;
}

@media (max-width: 1180px) {
  html body.maido-stage3k-home .landing-hero,
  html body.maido-stage4i-inner-page .maido-stage4i-inner-hero {
    height: min(100vh, 68vw) !important;
    min-height: 560px !important;
    max-height: 820px !important;
    background-position: center center !important;
  }

  html body.maido-stage4i-inner-page .maido-stage4i-inner-hero__content,
  html body.maido-stage3k-home .landing-hero__inner {
    left: clamp(24px, 5vw, 58px) !important;
    bottom: clamp(70px, 12vw, 126px) !important;
    max-width: calc(100vw - 48px) !important;
  }

  html body.maido-stage4i-inner-page .maido-stage4i-inner-hero__title,
  html body.maido-stage3k-home .landing-hero h1,
  html body.maido-stage3k-home .landing-hero__title {
    font-size: clamp(30px, 4.8vw, 48px) !important;
    white-space: normal !important;
  }
}

@media (max-width: 760px) {
  html body.maido-stage3k-home .landing-hero,
  html body.maido-stage4i-inner-page .maido-stage4i-inner-hero {
    height: auto !important;
    min-height: 540px !important;
    max-height: none !important;
    background-image: url('/image/catalog/imgs/banner-mble-1.png') !important;
    background-position: center center !important;
  }

  html body.maido-stage4i-inner-page .maido-stage4i-inner-hero__content,
  html body.maido-stage3k-home .landing-hero__inner {
    left: 22px !important;
    bottom: 58px !important;
    max-width: calc(100vw - 44px) !important;
  }

  html body.maido-stage4i-inner-page .maido-stage4i-inner-hero__title,
  html body.maido-stage3k-home .landing-hero h1,
  html body.maido-stage3k-home .landing-hero__title {
    font-size: clamp(32px, 9.3vw, 48px) !important;
    line-height: 1.04 !important;
  }
}
