/*
 * Header and first-screen refinements shared by the homepage bundle and
 * regular page styles.
 */
.sez-search-modal {
  display: none !important;
}

.sez-header__inner {
  grid-template-columns: minmax(160px, 240px) minmax(520px, 1fr) auto;
}

.sez-header__brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(10px, 1vw, 18px);
}

.sez-header__brand .sez-header__logo {
  flex: 0 1 auto;
}

.sez-header__store-entry {
  --sez-store-thumb: 22px;
  --sez-store-gap: 3px;
  --sez-store-gallery-width: 72px;
  --sez-store-move-1: -25px;
  --sez-store-move-2: -50px;
  --sez-store-move-3: -75px;
  --sez-store-move-4: -100px;
  --sez-store-move-5: -125px;
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: 700 14px/1 "Montserrat", "Open Sans", sans-serif;
  text-decoration: none;
  transition: border-color .22s ease, background-color .22s ease, color .22s ease;
}

.sez-store-gallery {
  display: block;
  width: var(--sez-store-gallery-width);
  height: var(--sez-store-thumb);
  overflow: hidden;
  flex: 0 0 auto;
}

.sez-store-gallery__track {
  display: flex;
  width: max-content;
  height: var(--sez-store-thumb);
  gap: var(--sez-store-gap);
  will-change: transform;
  animation: sez-store-gallery-shift 10s linear infinite;
}

.sez-store-gallery img {
  display: block;
  width: var(--sez-store-thumb);
  height: var(--sez-store-thumb);
  flex: 0 0 var(--sez-store-thumb);
  object-fit: cover;
  border-radius: 1px;
}

.sez-header__store-label {
  min-width: 0;
}

.sez-header__store-entry:hover {
  border-color: #20262d;
  background: #20262d;
  color: var(--sez-white);
}

.sez-home .sez-header:not(.is-scrolled) .sez-header__store-entry:hover {
  border-color: var(--sez-white);
  background: var(--sez-white);
  color: var(--sez-dark);
}

.sez-header__store-entry:focus-visible {
  outline: 2px solid var(--sez-accent);
  outline-offset: 2px;
}

.sez-nav__products > a::before,
.sez-nav__products > a::after {
  display: none !important;
  content: none !important;
}

.sez-nav__products > .sub-menu {
  display: none !important;
}

.sez-nav__products-arrow {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: -4px 0 0 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform .24s var(--sez-ease);
}

.sez-header:has(.sez-nav__products:hover) .sez-nav__products-arrow,
.sez-header:has(.sez-products-mega:hover) .sez-nav__products-arrow,
.sez-header.is-products-mega-open .sez-nav__products-arrow {
  transform: translateY(4px) rotate(225deg);
}

.sez-products-mega {
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  border-top: 0 solid var(--sez-line);
  background: #fff;
  color: var(--sez-dark);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgb(23 27 32 / 0%);
  transition:
    max-height .38s var(--sez-ease),
    opacity .22s ease,
    transform .32s var(--sez-ease),
    border-width .2s ease,
    box-shadow .3s ease;
}

.sez-header:has(.sez-nav__products:hover) .sez-products-mega,
.sez-header:has(.sez-products-mega:hover) .sez-products-mega,
.sez-header.is-products-mega-open .sez-products-mega {
  max-height: 450px;
  border-top-width: 1px;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  box-shadow: 0 22px 50px rgb(23 27 32 / 16%);
}

.sez-products-mega__inner {
  background: #fff;
  padding-block: 18px 22px;
}

.sez-products-mega__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
  color: var(--sez-muted);
  font-size: 10px;
  font-weight: 700;
}

.sez-products-mega__head > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sez-dark);
}

.sez-products-mega__head > a > span {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transition: transform .22s var(--sez-ease);
}

.sez-products-mega__head > a:hover {
  color: var(--sez-accent);
}

.sez-products-mega__head > a:hover > span {
  transform: none;
}

.sez-products-mega__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(112px, 8.25vw, 142px);
  gap: 10px;
}

.sez-products-mega__item {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  align-items: flex-end;
  padding: clamp(12px, 1.05vw, 18px);
  border: 1px solid var(--sez-line);
  background: #fff;
  color: var(--sez-dark);
  isolation: isolate;
}

.sez-products-mega__item:nth-child(even) {
  background: #fff;
}

.sez-products-mega__item--1,
.sez-products-mega__item--6 {
  grid-column: span 4;
}

.sez-products-mega__item--2,
.sez-products-mega__item--4 {
  grid-column: span 3;
}

.sez-products-mega__item--3,
.sez-products-mega__item--5 {
  grid-column: span 5;
}

.sez-products-mega__item strong {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  max-width: 59%;
  overflow: hidden;
  margin: 0;
  font: 700 clamp(12px, .85vw, 15px)/1.22 "Montserrat", "Open Sans", sans-serif;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.sez-products-mega__media {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 12px;
  bottom: 10px;
  display: block;
  width: 39%;
  overflow: hidden;
  pointer-events: none;
  transition: transform .32s var(--sez-ease);
}

.sez-products-mega__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

.sez-products-mega__corner {
  position: absolute;
  z-index: 4;
  top: 12px;
  right: 12px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0;
  transform: translate(-5px, 5px);
  transition: opacity .22s ease, transform .22s var(--sez-ease);
}

.sez-products-mega__item::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--sez-accent);
  content: "";
  opacity: 0;
  transition: opacity .25s ease;
}

.sez-products-mega__item:hover {
  color: var(--sez-white);
}

.sez-products-mega__item:hover::after {
  opacity: .94;
}

.sez-products-mega__item:hover .sez-products-mega__media {
  transform: scale(1.05) translateX(-4px);
}

.sez-products-mega__item:hover .sez-products-mega__corner {
  opacity: 1;
  transform: none;
}

@keyframes sez-store-gallery-shift {
  0%,
  16% {
    transform: translate3d(0, 0, 0);
  }
  20%,
  36% {
    transform: translate3d(var(--sez-store-move-1), 0, 0);
  }
  40%,
  56% {
    transform: translate3d(var(--sez-store-move-2), 0, 0);
  }
  60%,
  76% {
    transform: translate3d(var(--sez-store-move-3), 0, 0);
  }
  80%,
  96% {
    transform: translate3d(var(--sez-store-move-4), 0, 0);
  }
  100% {
    transform: translate3d(var(--sez-store-move-5), 0, 0);
  }
}

.sez-footer__products-title > a {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.sez-footer__grid {
  grid-template-columns: 1.05fr .7fr 1.2fr 1fr;
  gap: clamp(22px, 3vw, 52px);
}

.sez-store-gallery--footer {
  --sez-store-thumb: 24px;
  --sez-store-gap: 3px;
  --sez-store-gallery-width: 78px;
  --sez-store-move-1: -27px;
  --sez-store-move-2: -54px;
  --sez-store-move-3: -81px;
  --sez-store-move-4: -108px;
  --sez-store-move-5: -135px;
}

.sez-copy[data-copy] {
  position: relative;
}

.sez-copy-feedback__content {
  display: inherit;
  min-width: 0;
  opacity: 1;
  transition: opacity .24s ease;
}

.sez-copy-feedback__icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--sez-accent);
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-6px, -50%);
  transition: opacity .2s ease, transform .24s var(--sez-ease);
}

.sez-copy.is-copied {
  background: transparent !important;
  color: inherit !important;
  animation: none !important;
}

.sez-copy.is-copied .sez-copy-feedback__content {
  opacity: 0;
}

.sez-copy.is-copied .sez-copy-feedback__icon {
  opacity: 1;
  transform: translate(0, -50%);
}

.sez-home .sez-hero__grid {
  display: none;
}

@media (min-width: 1181px) and (max-width: 1600px) {
  .sez-home .sez-hero h1,
  .sez-home .sez-hero__heading {
    max-width: 760px;
    font-size: clamp(40px, 3.35vw, 58px);
  }

  .sez-home .sez-hero__content {
    padding-right: min(41vw, 700px);
    padding-bottom: 100px;
  }

  .sez-home .sez-hero__content p {
    max-width: 700px;
    margin-bottom: 26px;
    font-size: clamp(16px, 1.25vw, 19px);
  }

  .sez-home .sez-hero-widgets {
    width: clamp(570px, 41vw, 700px);
    grid-template-columns: minmax(150px, .54fr) minmax(330px, 1.46fr);
    grid-template-rows: repeat(3, clamp(118px, 12vh, 164px));
    transform: translateY(-40%);
  }
}

@media (max-width: 1500px) {
  .sez-header__inner {
    grid-template-columns: minmax(145px, 190px) minmax(380px, 1fr) auto;
  }

  .sez-header__brand {
    gap: 10px;
  }

  .sez-header__brand .sez-header__logo {
    height: 48px;
  }

  .sez-header__store-entry {
    --sez-store-thumb: 20px;
    --sez-store-gallery-width: 43px;
    --sez-store-move-1: -23px;
    --sez-store-move-2: -46px;
    --sez-store-move-3: -69px;
    --sez-store-move-4: -92px;
    --sez-store-move-5: -115px;
    min-height: 42px;
    padding: 6px 8px;
    font-size: 12px;
  }
}

@media (min-width: 1800px) {
  .sez-header__inner {
    grid-template-columns: minmax(180px, 260px) minmax(680px, 1fr) auto;
  }

  .sez-header__brand .sez-header__logo {
    height: 58px;
  }

  .sez-header__store-entry {
    --sez-store-thumb: 24px;
    --sez-store-gallery-width: 78px;
    --sez-store-move-1: -27px;
    --sez-store-move-2: -54px;
    --sez-store-move-3: -81px;
    --sez-store-move-4: -108px;
    --sez-store-move-5: -135px;
    min-height: 48px;
    padding: 8px 12px;
    font-size: 16px;
  }

  .sez-nav {
    gap: clamp(18px, 1.45vw, 30px);
  }

  .sez-nav > li > a {
    font-size: 16px;
  }

  .sez-header__utility {
    font-size: 13px;
  }
}

@media (max-width: 1180px) {
  .sez-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .sez-products-mega {
    display: none;
  }
}

@media (max-width: 991px) {
  .sez-header__store-entry {
    --sez-store-gallery-width: 20px;
    min-height: 40px;
  }

  .sez-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .sez-footer__grid > .sez-footer__products-nav {
    display: block;
    grid-column: 1 / -1;
    padding-top: 22px;
    border-top: 1px solid rgb(255 255 255 / 18%);
  }

  .sez-footer__products-title > a {
    justify-content: space-between;
  }

  .sez-footer__products-nav .sez-footer__menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 22px;
  }
}

@media (max-width: 767px) {
  .sez-header__store-entry {
    display: none;
  }
}

@media (max-width: 560px) {
  .sez-footer__grid {
    grid-template-columns: 1fr;
  }

  .sez-footer__products-title > a {
    width: 100%;
    gap: 10px;
  }

  .sez-store-gallery--footer {
    --sez-store-thumb: 22px;
    --sez-store-gallery-width: 72px;
    --sez-store-move-1: -25px;
    --sez-store-move-2: -50px;
    --sez-store-move-3: -75px;
    --sez-store-move-4: -100px;
    --sez-store-move-5: -125px;
  }

  .sez-footer__products-nav .sez-footer__menu {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sez-store-gallery__track {
    animation: none;
  }
}
