/* Homepage clone layer. Loaded after theme.css only on the front page. */

body.home {
  --sx-header-height: 100px;
  --sx-home-charcoal: #222222;
  --sx-home-near-black: #151515;
  --sx-home-orange: #ff5a1f;
  --sx-home-orange-dark: #dc4312;
  --sx-home-blue: #2779b9;
  --sx-home-rail: 1296px;
  min-width: 0;
  overflow-x: clip;
}

body.home .sx-container {
  width: min(calc(100% - 144px), var(--sx-home-rail));
}

body.home a:focus-visible,
body.home button:focus-visible {
  outline: 3px solid var(--sx-home-orange);
  outline-offset: 3px;
}

body.home .sx-home-main {
  min-width: 0;
  overflow: clip;
  background: var(--sx-home-charcoal);
}

/* Header */
body:is(.home, .sx-product-chrome) .sx-home-header {
  position: sticky;
  z-index: 100;
  top: var(--sx-admin-offset);
  height: var(--sx-header-height);
  border: 0;
  background: #232323;
  color: #ffffff;
  backdrop-filter: none;
}

body:is(.home, .sx-product-chrome) .sx-home-header__inner {
  position: relative;
  display: grid;
  width: calc(100% - 144px);
  max-width: none;
  height: 100px;
  grid-template-rows: 50px 50px;
  margin-inline: auto;
}

body:is(.home, .sx-product-chrome) .sx-home-header__inner::after {
  position: absolute;
  z-index: 2;
  top: 49px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
  content: "";
  pointer-events: none;
}

body:is(.home, .sx-product-chrome) .sx-home-header a {
  transition: color 160ms ease;
}

body:is(.home, .sx-product-chrome) .sx-home-header__top,
body:is(.home, .sx-product-chrome) .sx-home-header__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
}

body:is(.home, .sx-product-chrome) .sx-home-header__top {
  z-index: 3;
  grid-row: 1;
}

body:is(.home, .sx-product-chrome) .sx-home-header__bottom {
  grid-row: 2;
}

body:is(.home, .sx-product-chrome) .sx-home-header__top-left,
body:is(.home, .sx-product-chrome) .sx-home-header__top-right,
body:is(.home, .sx-product-chrome) .sx-home-header__bottom-left,
body:is(.home, .sx-product-chrome) .sx-home-header__bottom-right,
body:is(.home, .sx-product-chrome) .sx-home-header__tool,
body:is(.home, .sx-product-chrome) .sx-home-header__account,
body:is(.home, .sx-product-chrome) .sx-home-header__currency {
  display: flex;
  min-width: 0;
  align-items: center;
}

body:is(.home, .sx-product-chrome) .sx-home-header__top-left {
  gap: 8px;
  margin-left: -8px;
}

body:is(.home, .sx-product-chrome) .sx-home-header__brand {
  flex: 0 0 auto;
}

body:is(.home, .sx-product-chrome) .sx-home-header__brand .sx-brand__mark {
  width: 48px;
  height: auto;
  filter: none;
}

body:is(.home, .sx-product-chrome) .sx-home-header__catalog {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

body:is(.home, .sx-product-chrome) .sx-home-header__catalog .sx-icon {
  width: 24px;
  height: 24px;
}

body:is(.home, .sx-product-chrome) .sx-home-header__top-right {
  justify-content: flex-end;
  gap: 15px;
  color: #eeeeee;
}

body:is(.home, .sx-product-chrome) .sx-home-header__mobile-currency {
  display: none !important;
}

body:is(.home, .sx-product-chrome) .sx-home-header__tool {
  flex: 0 0 auto;
  gap: 7px;
  padding-inline: 7px;
  color: #eeeeee;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

body:is(.home, .sx-product-chrome) a.sx-home-header__tool:hover,
body:is(.home, .sx-product-chrome) .sx-home-header__account:hover,
body:is(.home, .sx-product-chrome) .sx-home-header__bottom-left a:hover,
body:is(.home, .sx-product-chrome) .sx-home-header__contact:hover {
  color: #ffffff;
}

body:is(.home, .sx-product-chrome) .sx-home-header__top-right > :nth-child(1) .sx-icon {
  width: 30px;
  height: 30px;
}

body:is(.home, .sx-product-chrome) .sx-home-header__top-right > :nth-child(2) .sx-icon {
  width: 27px;
  height: 27px;
}

body:is(.home, .sx-product-chrome) .sx-home-header__cart .sx-icon {
  width: 29px;
  height: 29px;
}

body:is(.home, .sx-product-chrome) .sx-home-header__cart {
  width: 48px;
  justify-content: center;
}

body:is(.home, .sx-product-chrome) .sx-home-header__account {
  flex: 0 0 auto;
  gap: 8px;
  padding-left: 12px;
  color: #ffffff;
}

body:is(.home, .sx-product-chrome) .sx-home-header__account > img {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  max-width: none;
  flex: 0 0 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  object-fit: cover;
  object-position: 50% 50%;
}

body:is(.home, .sx-product-chrome) .sx-home-header__account-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

body:is(.home, .sx-product-chrome) .sx-home-header__account-icon .sx-icon {
  width: 18px;
  height: 18px;
}

body:is(.home, .sx-product-chrome) .sx-home-header__account > span {
  display: grid;
  min-width: 0;
  gap: 1px;
  line-height: 1.05;
  text-align: right;
}

body:is(.home, .sx-product-chrome) .sx-home-header__account strong {
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

body:is(.home, .sx-product-chrome) .sx-home-header__account small {
  color: #b4b4b4;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

body:is(.home, .sx-product-chrome) .sx-home-header [aria-disabled="true"] {
  cursor: default;
  pointer-events: none;
}

body:is(.home, .sx-product-chrome) .sx-home-header__bottom-left {
  gap: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

body:is(.home, .sx-product-chrome) .sx-home-header__bottom-left > * {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

body:is(.home, .sx-product-chrome) .sx-home-header__bottom-left > :first-child {
  color: #e3d0b3;
}

body:is(.home, .sx-product-chrome) .sx-home-header__separator {
  display: inline-flex;
  width: 30px;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

body:is(.home, .sx-product-chrome) .sx-home-header__bottom-right {
  justify-content: flex-end;
  gap: 19px;
}

body:is(.home, .sx-product-chrome) .sx-home-header__currency {
  width: auto;
  height: 27px;
  flex: 0 0 auto;
  gap: 14px;
  color: #d8d8d8;
}

body:is(.home, .sx-product-chrome) .sx-home-header__currency > img {
  width: 32px;
  height: 16px;
  flex: 0 0 32px;
  object-fit: cover;
}

body:is(.home, .sx-product-chrome) .sx-home-header__currency-label {
  display: inline-flex;
  width: 91px;
  height: 27px;
  align-items: center;
  justify-content: center;
  padding-inline: 6px;
  border: 1px solid #626262;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

body:is(.home, .sx-product-chrome) .sx-home-header__currency strong {
  font-size: 14px;
  font-weight: 600;
}

body:is(.home, .sx-product-chrome) .sx-home-header__currency-picker {
  position: relative;
}

body:is(.home, .sx-product-chrome) .sx-home-header__currency-trigger,
body:is(.home, .sx-product-chrome) .sx-home-header__currency-menu button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

body:is(.home, .sx-product-chrome) .sx-home-header__currency-trigger {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 9px;
  padding: 0;
}

body:is(.home, .sx-product-chrome) .sx-home-header__currency-trigger > span {
  font-size: 18px;
  line-height: 1;
}

body:is(.home, .sx-product-chrome) .sx-home-header__currency-trigger .sx-icon {
  width: 13px;
  height: 13px;
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

body:is(.home, .sx-product-chrome) .sx-home-header__currency-trigger[aria-expanded="true"] .sx-icon {
  transform: rotate(-90deg);
}

body:is(.home, .sx-product-chrome) .sx-home-header__currency-menu {
  position: absolute;
  z-index: 280;
  top: calc(100% + 10px);
  right: 0;
  width: 132px;
  padding: 5px;
  border: 1px solid #515151;
  border-radius: 4px;
  background: #232323;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

body:is(.home, .sx-product-chrome) .sx-home-header__currency-menu button {
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  border-radius: 3px;
  text-align: left;
}

body:is(.home, .sx-product-chrome) .sx-home-header__currency-menu button:hover,
body:is(.home, .sx-product-chrome) .sx-home-header__currency-menu button[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.12);
}

body:is(.home, .sx-product-chrome) .sx-home-header__contact {
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

body:is(.home, .sx-product-chrome) .sx-home-header__mobile-toggle,
body:is(.home, .sx-product-chrome) .sx-home-header__mobile-nav {
  display: none;
}

/* Hero */
body.home .sx-home-hero {
  position: relative;
  display: grid;
  height: 600px;
  min-height: 600px;
  overflow: hidden;
  background: #303334 url("../images/home/new-zealand-hero.jpg") 47% 59% / cover no-repeat;
  color: #ffffff;
}

body.home .sx-home-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 18, 18, 0.8) 0%, rgba(17, 18, 18, 0.57) 33%, rgba(17, 18, 18, 0.12) 69%, rgba(17, 18, 18, 0.02) 100%);
  content: "";
  pointer-events: none;
}

body.home .sx-home-hero__shade {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.25), transparent 45%);
  pointer-events: none;
}

body.home .sx-home-hero__content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 50px 0 0;
}

@keyframes sx-home-hero-reveal {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

body.home .sx-home-hero__eyebrow,
body.home .sx-home-hero h1,
body.home .sx-home-hero__lead > p,
body.home .sx-home-hero__actions,
body.home .sx-home-hero__scroll {
  animation: sx-home-hero-reveal 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: opacity, filter, transform;
}

body.home .sx-home-hero__eyebrow { animation-delay: 80ms; }
body.home .sx-home-hero h1 { animation-delay: 180ms; }
body.home .sx-home-hero__lead > p:nth-child(1) { animation-delay: 470ms; }
body.home .sx-home-hero__lead > p:nth-child(2) { animation-delay: 650ms; }
body.home .sx-home-hero__lead > p:nth-child(3) { animation-delay: 830ms; }
body.home .sx-home-hero__actions { animation-delay: 1010ms; }
body.home .sx-home-hero__scroll { animation-delay: 1160ms; }

body.home .sx-home-hero__eyebrow,
body.home .sx-home-eyebrow {
  margin: 0;
  color: #a9a9a9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
}

body.home .sx-home-hero__eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

body.home .sx-home-hero h1 {
  max-width: 640px;
  margin: 15px 0 18px;
  color: #ffffff;
  font-size: 55px;
  font-weight: 700;
  line-height: 1.14;
}

body.home .sx-home-hero__lead {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.72;
}

body.home .sx-home-hero__lead > p {
  margin: 0;
}

body.home .sx-home-hero__lead > p:first-child {
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
}

body.home .sx-home-hero__actions {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

body.home .sx-home-hero .sx-button {
  width: 142px;
  min-width: 142px;
  flex: 0 0 142px;
  gap: 10px;
  padding: 8px;
  border: 1px solid #000000;
  border-radius: 999px;
  box-shadow: none;
  color: #000000;
  font-family: Arial, sans-serif;
  font-size: 13.3333px;
  font-weight: 400;
  line-height: normal;
  transform: none;
}

body.home .sx-home-hero .sx-button--primary {
  height: 43px;
  min-height: 43px;
  background: #eb641b;
}

body.home .sx-home-hero .sx-button--primary .sx-icon {
  width: 25px;
  height: 25px;
}

body.home .sx-home-hero__contact {
  height: 42px;
  min-height: 42px;
  background: #d1d1d1;
}

body.home .sx-home-hero__contact .sx-icon {
  width: 22px;
  height: 22px;
}

body.home .sx-home-hero .sx-button:hover {
  border-color: #000000;
  box-shadow: none;
  color: #000000;
  transform: none;
}

body.home .sx-home-hero .sx-button--primary:hover {
  background: #eb641b;
}

body.home .sx-home-hero__contact:hover {
  background: #d1d1d1;
}

body.home .sx-home-hero__scroll {
  position: absolute;
  z-index: 2;
  right: 72px;
  bottom: 28px;
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  place-items: center;
}

body.home .sx-home-hero__scroll span {
  width: 8px;
  height: 8px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transform: translateY(-2px) rotate(45deg);
}

/* Itinerary introduction */
body.home .sx-home-intro {
  min-height: 281px;
  padding: 46px 0;
  background: var(--sx-home-charcoal);
  color: #ffffff;
}

body.home .sx-home-intro__grid {
  display: grid;
  min-height: 189px;
  grid-template-columns: minmax(270px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 72px;
}

body.home .sx-home-intro h2 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.14;
}

body.home .sx-home-intro__copy {
  min-width: 0;
}

body.home .sx-home-intro__copy > p {
  max-width: 690px;
  margin: 0;
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.8;
}

body.home .sx-home-stats {
  display: flex;
  gap: 42px;
  margin: 23px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
}

body.home .sx-home-stats > div {
  min-width: 104px;
  padding: 12px 0 0;
}

body.home .sx-home-stats dt {
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

body.home .sx-home-stats dd {
  margin: 2px 0 0;
  color: #9f9f9f;
  font-size: 11px;
}

body.home .sx-home-text-link {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  color: #dedede;
  font-size: 12px;
  font-weight: 650;
}

body.home .sx-home-text-link:hover {
  color: var(--sx-home-orange);
}

/* Product mosaic */
body.home .sx-home-journeys {
  min-height: 917px;
  padding: 0 0 40px;
  background: var(--sx-home-charcoal);
  color: #ffffff;
}

body.home .sx-home-section-heading {
  display: flex;
  min-height: 105px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0;
}

body.home .sx-home-section-heading h2 {
  margin: 5px 0 0;
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.25;
}

body.home .sx-home-section-heading > .sx-home-text-link {
  flex: 0 0 auto;
  margin-top: 0;
}

body.home .sx-home-product-grid {
  display: grid;
  min-width: 0;
  grid-auto-flow: row dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, 380px);
  gap: 12px;
}

body.home .sx-home-product-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #3a3a3a;
  color: #ffffff;
  isolation: isolate;
}

body.home .sx-home-product-card--wide {
  grid-column: span 2;
}

body.home .sx-home-product-card--tall,
body.home .sx-home-product-card--standard {
  grid-column: span 1;
}

body.home .sx-home-product-card__media,
body.home .sx-home-product-card__media > picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body.home .sx-home-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

body.home .sx-home-product-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 11, 11, 0.9) 0%, rgba(11, 11, 11, 0.42) 38%, rgba(11, 11, 11, 0.05) 70%);
}

body.home .sx-home-product-card:hover .sx-home-product-card__media img {
  transform: scale(1.025);
}

body.home .sx-home-product-card__badges {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  left: 16px;
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

body.home .sx-home-product-card__duration,
body.home .sx-home-product-card__status {
  max-width: 100%;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 3px;
  background: rgba(20, 20, 20, 0.48);
  color: #ffffff;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.25;
  backdrop-filter: blur(8px);
}

body.home .sx-home-product-card__status {
  margin-left: auto;
}

body.home .sx-home-product-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  min-width: 0;
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

body.home .sx-home-product-card__copy {
  min-width: 0;
  padding-right: 32px;
}

body.home .sx-home-product-card__copy h3 {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

body.home .sx-home-product-card__copy p {
  display: -webkit-box;
  max-width: 540px;
  margin: 6px 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.home .sx-home-product-card__meta {
  display: flex;
  min-width: 0;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1.4;
}

body.home .sx-home-product-card__meta span {
  min-width: 0;
}

body.home .sx-home-product-card__meta strong {
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 12px;
}

body.home .sx-home-product-card__arrow {
  position: absolute;
  right: 22px;
  bottom: 76px;
  display: grid;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  place-items: center;
}

body.home .sx-home-product-card__arrow .sx-icon {
  width: 14px;
  height: 14px;
}

body.home .sx-home-empty {
  grid-column: 1 / -1;
  display: grid;
  min-height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #bdbdbd;
  place-items: center;
}

/* Travel categories */
body.home .sx-home-categories {
  min-height: 416px;
  padding: 0 0 81px;
  background: var(--sx-home-charcoal);
  color: #ffffff;
}

body.home .sx-home-categories .sx-home-section-heading {
  min-height: 105px;
}

body.home .sx-home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body.home .sx-home-category {
  position: relative;
  display: block;
  min-width: 0;
  height: 230px;
  overflow: hidden;
  background: #343434;
}

body.home .sx-home-category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 240ms ease, transform 240ms ease;
}

body.home .sx-home-category__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 12, 12, 0.78), rgba(12, 12, 12, 0.06) 66%);
}

body.home .sx-home-category h3 {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  margin: 0;
  padding-top: 11px;
  border-top: 2px solid var(--sx-home-blue);
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  transition: border-color 240ms ease;
}

body.home .sx-home-category__arrow {
  position: absolute;
  right: 18px;
  bottom: 21px;
  display: grid;
  width: 22px;
  height: 22px;
  color: #ffffff;
  place-items: center;
}

body.home .sx-home-category__arrow .sx-icon {
  width: 16px;
  height: 16px;
}

body.home .sx-home-category:hover img {
  filter: brightness(1.06);
  transform: scale(1.025);
}

body.home .sx-home-category:hover h3 {
  border-top-color: var(--sx-home-orange);
}

/* Benefits */
body.home .sx-home-benefits {
  min-height: 1190px;
  background: #f5f4f3;
  color: #1f1f1f;
}

body.home .sx-home-benefits__inner {
  position: relative;
  display: block;
  width: min(calc(100% - 241px), 1175px);
  min-height: 1190px;
  margin-inline: auto;
  padding-block: 0;
}

body.home .sx-home-benefits__heading {
  position: relative;
  height: 400px;
  min-width: 0;
  padding-top: 80px;
}

body.home .sx-home-benefits__heading-reveal.sx-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

body.home .sx-home-benefits__heading-reveal.sx-reveal.is-visible {
  opacity: 1;
  transform: none;
}

body.home .sx-home-benefits__heading-reveal > .sx-home-eyebrow,
body.home .sx-home-benefits__heading-reveal > h2 {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

body.home .sx-home-benefits__heading-reveal.is-visible > .sx-home-eyebrow,
body.home .sx-home-benefits__heading-reveal.is-visible > h2 {
  opacity: 1;
  transform: none;
}

body.home .sx-home-benefits__heading .sx-home-eyebrow {
  display: none;
}

body.home .sx-home-benefits__heading h2 {
  position: relative;
  z-index: 3;
  width: 564px;
  max-width: 48%;
  margin: 0;
  color: #1e1e1e;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.43;
  text-align: right;
}

body.home .sx-home-benefits__brand {
  position: absolute;
  inset: 0;
  margin: 0;
  pointer-events: none;
}

body.home .sx-home-benefits__mark {
  position: absolute;
  z-index: 1;
  top: 232px;
  left: 334px;
  width: 334px;
  height: 121px;
}

body.home .sx-home-benefits__mark.sx-reveal {
  opacity: 0;
  transform: translate(-21px, -21px);
  transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

body.home .sx-home-benefits__mark.sx-reveal.is-visible,
body.home .sx-home-benefits__heading-reveal.is-visible .sx-home-benefits__mark.sx-reveal {
  opacity: 1;
  transform: none;
}

body.home .sx-home-benefits__mark-square,
body.home .sx-home-benefits__mark-horizontal,
body.home .sx-home-benefits__mark-vertical {
  position: absolute;
  display: block;
  background: #b6e9f4;
}

body.home .sx-home-benefits__mark-square {
  top: 0;
  left: 0;
  width: 279px;
  height: 25px;
  transform-origin: center;
  transform: rotate(45deg);
}

body.home .sx-home-benefits__mark-horizontal {
  top: 96px;
  left: 46px;
  width: 200px;
  height: 25px;
}

body.home .sx-home-benefits__mark-vertical {
  top: 6px;
  left: 134px;
  width: 200px;
  height: 25px;
  transform: rotate(90deg);
}

body.home .sx-home-benefits__brand-copy {
  position: absolute;
  z-index: 3;
  top: 91px;
  left: 54%;
  display: grid;
  width: 46%;
  gap: 0;
  color: #1f1f1f;
}

body.home .sx-home-benefits__brand-copy.sx-reveal {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

body.home .sx-home-benefits__brand-copy.sx-reveal.is-visible,
body.home .sx-home-benefits__heading-reveal.is-visible .sx-home-benefits__brand-copy.sx-reveal {
  opacity: 1;
  transform: none;
}

body.home .sx-home-benefits__brand-copy strong {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
}

body.home .sx-home-benefits__brand-copy span {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
}

body.home .sx-home-benefits__list {
  position: absolute;
  top: 483px;
  left: 54%;
  width: 46%;
  border-top: 0;
}

body.home .sx-home-benefit {
  position: relative;
  display: grid;
  min-height: 200px;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  border: 0;
  outline: 0;
}

body.home .sx-home-benefit::before,
body.home .sx-home-benefit:last-child::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: #d8d8d8;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s ease;
}

body.home .sx-home-benefit::before {
  top: 0;
}

body.home .sx-home-benefit:last-child::after {
  bottom: 0;
}

body.home .sx-home-benefit.is-visible::before,
body.home .sx-home-benefit:last-child.is-visible::after {
  transform: scaleX(1);
}

body.home .sx-home-benefit.sx-reveal,
body.home .sx-home-benefit.sx-reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

body.home .sx-home-benefit:focus-visible {
  outline: 3px solid rgba(255, 90, 31, 0.7);
  outline-offset: 4px;
}

body.home .sx-home-benefit__number {
  position: relative;
  top: -10px;
  color: #d1d1d1;
  font-size: 70px;
  font-weight: 400;
  line-height: normal;
  transition: color 0.4s ease-in-out;
}

body.home .sx-home-benefit:nth-child(1):hover .sx-home-benefit__number,
body.home .sx-home-benefit:nth-child(1):focus .sx-home-benefit__number {
  color: #ff3ac7;
}

body.home .sx-home-benefit:nth-child(2):hover .sx-home-benefit__number,
body.home .sx-home-benefit:nth-child(2):focus .sx-home-benefit__number {
  color: #21eae1;
}

body.home .sx-home-benefit:nth-child(3):hover .sx-home-benefit__number,
body.home .sx-home-benefit:nth-child(3):focus .sx-home-benefit__number {
  color: #e6cc86;
}

body.home .sx-home-benefit__copy {
  position: relative;
  top: 13px;
  min-width: 0;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.home .sx-home-benefit.is-visible .sx-home-benefit__copy {
  opacity: 1;
  transform: none;
}

body.home .sx-home-benefit h3 {
  margin: 0;
  color: #222222;
  font-size: 19.4px;
  font-weight: 700;
  line-height: 1.4;
}

body.home .sx-home-benefit p {
  max-width: 510px;
  margin: 8px 0 0;
  color: #747474;
  font-size: 16.8px;
  line-height: 1.6;
}

/* Contact and footer */
body.home .sx-home-contact {
  min-height: 390px;
  padding: 90px 0;
  background: #262626;
  color: #ffffff;
}

body.home .sx-home-contact__inner {
  display: flex;
  min-height: 210px;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

body.home .sx-home-contact__copy {
  min-width: 0;
}

body.home .sx-home-contact h2 {
  margin: 15px 0 13px;
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
}

body.home .sx-home-contact p:last-child {
  max-width: 690px;
  margin: 0;
  color: #c8c8c8;
  font-size: 15px;
  line-height: 1.85;
}

body.home .sx-home-contact .sx-button {
  min-height: 50px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--sx-home-orange);
  transform: none;
}

body.home .sx-home-contact .sx-button:hover {
  background: var(--sx-home-orange-dark);
  transform: none;
}

body.home .sx-footer {
  padding: 92px 0 28px;
  background: var(--sx-home-near-black);
  color: #ffffff;
}

body.home .sx-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.65fr;
  gap: 80px;
}

body.home .sx-footer .sx-brand__mark {
  width: 58px;
}

body.home .sx-footer .sx-brand__text strong {
  color: #ffffff;
  font-size: 22px;
}

body.home .sx-footer__grid > div:first-child p {
  max-width: 390px;
  margin: 27px 0 0;
  color: #d1d1d1;
  font-size: 14px;
  line-height: 1.9;
}

body.home .sx-footer__label {
  margin-bottom: 16px;
  color: #9f9f9f;
  font-size: 10px;
  text-transform: uppercase;
}

body.home .sx-footer__contact {
  color: #ffffff;
  font-size: 20px;
  font-weight: 650;
}

body.home .sx-footer__contact:hover,
body.home .sx-footer__nav a:hover {
  color: var(--sx-home-orange);
}

body.home .sx-footer__nav {
  gap: 12px;
  color: #d1d1d1;
  font-size: 13px;
}

body.home .sx-footer__bottom {
  margin-top: 72px;
  padding-top: 20px;
  border-top-color: rgba(255, 255, 255, 0.16);
  color: #8d8d8d;
  font-size: 10px;
}

/* Mobile shortcut navigation */
body.home .sx-home-mobile-nav {
  display: none;
}
/* Reveal behavior */
body.home .sx-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

body.home .sx-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  body.home .sx-container {
    width: min(calc(100% - 72px), var(--sx-home-rail));
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__top-left {
    gap: 8px;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__top-right {
    gap: 12px;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__tool {
    gap: 5px;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__bottom-right {
    gap: 12px;
  }

  body.home .sx-home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 390px;
  }

  body.home .sx-home-product-card--wide,
  body.home .sx-home-product-card--tall,
  body.home .sx-home-product-card--standard {
    grid-column: span 1;
  }

  body.home .sx-home-journeys {
    min-height: 0;
  }

  body.home .sx-home-benefits__inner {
    width: min(calc(100% - 72px), var(--sx-home-rail));
    grid-template-columns: minmax(260px, 0.8fr) minmax(380px, 1.2fr);
    gap: 58px;
    margin-inline: auto;
  }

  body.home .sx-home-benefits__heading h2 {
    font-size: 46px;
  }

  body.home .sx-home-benefit {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 20px;
  }
}

@media (max-width: 900px) {
  body.home {
    --sx-header-height: 64px;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header {
    height: 64px;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__inner {
    display: flex;
    width: calc(100% - 40px);
    height: 64px;
    align-items: center;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__inner::after {
    display: none;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__top {
    width: 100%;
    height: 64px;
    padding-right: 54px;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__top-left {
    gap: 8px;
    margin-left: 0;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__catalog {
    gap: 8px;
    font-size: 15px;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__catalog .sx-icon {
    width: 24px;
    height: 24px;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__top-right,
  body:is(.home, .sx-product-chrome) .sx-home-header__bottom {
    display: none;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__mobile-currency {
    position: absolute;
    z-index: 4;
    top: 14px;
    right: 56px;
    display: flex !important;
    width: 72px;
    height: 36px;
    color: #f2f2f2;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__brand .sx-brand__mark {
    width: 48px;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__mobile-toggle {
    position: absolute;
    z-index: 3;
    top: 10px;
    right: 0;
    display: inline-grid;
    width: 44px;
    height: 44px;
    margin-left: 0;
    padding: 8px;
    color: #ffffff;
    place-items: center;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__mobile-toggle .sx-icon {
    width: 24px;
    height: 24px;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__mobile-nav {
    position: fixed;
    z-index: 260;
    top: calc(64px + var(--sx-admin-offset));
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100svh - 64px - var(--sx-admin-offset) - 16px);
    margin: 0;
    padding: 12px;
    overflow-y: auto;
    border: 1px solid #626262;
    border-radius: 4px;
    background: #232323;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__mobile-nav.is-open {
    display: block;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__mobile-nav .sx-nav__list {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__mobile-nav .sx-nav__list li {
    min-width: 0;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__mobile-nav .sx-nav__list a,
  body:is(.home, .sx-product-chrome) .sx-home-header__mobile-nav .sx-nav__list span {
    display: block;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    color: #eeeeee;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__mobile-nav .sx-nav__list li:last-child > * {
    border-bottom: 0;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__mobile-nav .sx-nav__list a::after {
    display: none;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__mobile-nav .sx-nav__list a:hover {
    color: #e3d0b3;
  }

  body:is(.home, .sx-product-chrome) .sx-home-header__mobile-nav .sx-nav__list [aria-disabled="true"] {
    color: #929292;
  }

  body.home .sx-home-intro__grid {
    gap: 40px;
  }

  body.home .sx-home-product-card__body {
    padding: 20px;
  }

  body.home .sx-home-category-grid {
    gap: 10px;
  }

  body.home .sx-home-category h3 {
    right: 12px;
    bottom: 14px;
    left: 12px;
    font-size: 16px;
  }

  body.home .sx-home-category__arrow {
    right: 12px;
    bottom: 16px;
  }

  body.home .sx-home-benefits__inner {
    grid-template-columns: minmax(220px, 0.72fr) minmax(340px, 1.28fr);
    gap: 42px;
  }

  body.home .sx-home-benefits__heading h2 {
    font-size: 40px;
  }

  body.home .sx-home-benefit__number {
    font-size: 60px;
  }

  body.home .sx-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 54px;
  }

  body.home .sx-footer__grid nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  body.home {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  body.home .sx-container {
    width: calc(100% - 40px);
  }

  body.home .sx-home-hero {
    height: 557px;
    min-height: 557px;
    background-position: 55% 59%;
  }

  body.home .sx-home-hero::before {
    background: linear-gradient(90deg, rgba(14, 15, 15, 0.7) 0%, rgba(14, 15, 15, 0.38) 60%, rgba(14, 15, 15, 0.1) 100%);
  }

  body.home .sx-home-hero__content {
    align-self: start;
    padding-top: 96px;
  }

  body.home .sx-home-hero__eyebrow,
  body.home .sx-home-eyebrow {
    font-size: 17px;
  }

  body.home .sx-home-hero h1 {
    max-width: 295px;
    margin: 12px 0 14px;
    font-size: 35px;
    line-height: 1.2;
  }

  body.home .sx-home-hero__lead {
    max-width: 328px;
    font-size: 13px;
    line-height: 1.62;
  }

  body.home .sx-home-hero__lead > p:first-child {
    margin-bottom: 4px;
    font-size: 14px;
  }

  body.home .sx-home-hero__actions {
    width: 280px;
    height: 38px;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 22px;
  }

  body.home .sx-home-hero .sx-button {
    width: 135px;
    min-width: 135px;
    height: 38px;
    min-height: 38px;
    flex: 0 0 135px;
    gap: 10px;
    padding: 8px;
    border: 0;
    border-radius: 999px;
    font-size: 13.3333px;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
  }

  body.home .sx-home-hero .sx-button--primary .sx-icon {
    width: 25px;
    height: 25px;
  }

  body.home .sx-home-hero__contact .sx-icon {
    width: 22px;
    height: 22px;
  }

  body.home .sx-home-hero__scroll {
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }

  body.home .sx-home-intro {
    min-height: 345px;
    padding: 47px 0 40px;
  }

  body.home .sx-home-intro__grid {
    min-height: 258px;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 20px;
  }

  body.home .sx-home-intro h2 {
    margin-top: 7px;
    font-size: 35px;
  }

  body.home .sx-home-intro__copy > p {
    font-size: 13px;
    line-height: 1.72;
  }

  body.home .sx-home-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
  }

  body.home .sx-home-stats > div {
    min-width: 0;
    padding-top: 10px;
  }

  body.home .sx-home-stats dt {
    font-size: 22px;
  }

  body.home .sx-home-text-link {
    margin-top: 10px;
  }

  body.home .sx-home-journeys {
    min-height: 583px;
    padding-bottom: 13px;
  }

  body.home .sx-home-journeys > .sx-container {
    width: 100%;
  }

  body.home .sx-home-section-heading {
    min-height: 98px;
    padding-inline: 20px;
  }

  body.home .sx-home-section-heading .sx-home-eyebrow {
    font-size: 15px;
  }

  body.home .sx-home-section-heading h2 {
    margin-top: 4px;
    font-size: 23px;
  }

  body.home .sx-home-section-heading > .sx-home-text-link {
    font-size: 11px;
  }

  body.home .sx-home-product-grid {
    display: flex;
    height: 472px;
    gap: 10px;
    padding: 0 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  body.home .sx-home-product-grid::-webkit-scrollbar {
    display: none;
  }

  body.home .sx-home-product-card,
  body.home .sx-home-product-card--wide,
  body.home .sx-home-product-card--tall,
  body.home .sx-home-product-card--standard {
    width: 288px;
    height: 472px;
    min-height: 472px;
    flex: 0 0 288px;
    scroll-snap-align: start;
  }

  body.home .sx-home-product-card__body {
    padding: 20px 18px;
  }

  body.home .sx-home-product-card__copy {
    padding-right: 26px;
  }

  body.home .sx-home-product-card__copy h3 {
    font-size: 16px;
  }

  body.home .sx-home-product-card__copy p {
    font-size: 10px;
  }

  body.home .sx-home-product-card__arrow {
    right: 17px;
    bottom: 73px;
  }

  body.home .sx-home-empty {
    width: calc(100% - 40px);
    min-height: 300px;
    flex: 0 0 calc(100% - 40px);
  }

  body.home .sx-home-categories {
    min-height: 387px;
    padding-bottom: 59px;
  }

  body.home .sx-home-categories .sx-container {
    width: calc(100% - 40px);
  }

  body.home .sx-home-categories .sx-home-section-heading {
    min-height: 98px;
    padding-inline: 0;
  }

  body.home .sx-home-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  body.home .sx-home-category {
    height: 230px;
  }

  body.home .sx-home-category h3 {
    right: 6px;
    bottom: 10px;
    left: 6px;
    padding-top: 7px;
    border-top-width: 2px;
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
  }

  body.home .sx-home-category__arrow {
    display: none;
  }

  body.home .sx-home-benefits {
    min-height: 1037px;
    background: #ffffff;
  }

  body.home .sx-home-benefits__inner {
    position: relative;
    display: block;
    width: 100%;
    min-height: 1037px;
    padding: 0;
  }

  body.home .sx-home-benefits__heading {
    display: grid;
    position: relative;
    width: calc(100% - 40px);
    height: 332px;
    align-content: start;
    margin-inline: auto;
    padding: 0;
    overflow: hidden;
  }

  body.home .sx-home-benefits__heading .sx-home-eyebrow {
    display: none;
  }

  body.home .sx-home-benefits__heading h2 {
    position: relative;
    z-index: 3;
    max-width: 330px;
    margin: 0;
    font-size: 38.65px;
    line-height: 1.3;
    text-align: left;
  }

  body.home .sx-home-benefits__brand {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    margin-top: 0;
    perspective: 500px;
  }

  body.home .sx-home-benefits__mark {
    top: 58.5px;
    right: -20px;
    left: auto;
    width: 163.4px;
    height: 91.5px;
  }

  body.home .sx-home-benefits__mark.sx-reveal {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    transform: translate(-10px, -10px) rotateY(-55deg);
    transform-origin: left center;
    transition: clip-path 1.2s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 1.2s ease, transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  body.home .sx-home-benefits__mark.sx-reveal.is-visible,
  body.home .sx-home-benefits__heading-reveal.is-visible .sx-home-benefits__mark.sx-reveal {
    clip-path: inset(0);
    opacity: 1;
    transform: none;
  }

  body.home .sx-home-benefits__mark-square {
    top: 52px;
    left: 16px;
    width: 70px;
    height: 8px;
  }

  body.home .sx-home-benefits__mark-horizontal {
    top: 52px;
    left: 72px;
    width: 70px;
    height: 8px;
    transform: rotate(-45deg);
  }

  body.home .sx-home-benefits__mark-vertical {
    top: 7.5px;
    left: 13px;
    width: 131px;
    height: 7px;
    transform: rotate(90deg);
  }

  body.home .sx-home-benefits__mark-square,
  body.home .sx-home-benefits__mark-horizontal,
  body.home .sx-home-benefits__mark-vertical {
    background: #f5f4f3;
  }

  body.home .sx-home-benefits__brand-copy {
    top: 173px;
    left: 0;
    display: grid;
    width: 292.5px;
    gap: 0;
  }

  body.home .sx-home-benefits__brand-copy strong {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
  }

  body.home .sx-home-benefits__brand-copy span {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
  }

  body.home .sx-home-benefits__list {
    position: static;
    width: calc(100% - 40px);
    min-height: 705px;
    margin-inline: auto;
  }

  body.home .sx-home-benefit {
    min-height: 235px;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
  }

  body.home .sx-home-benefit__copy {
    top: 0;
    transform: translateY(15px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  body.home .sx-home-benefit__number {
    top: 0;
    align-self: start;
    padding-top: 53px;
    font-size: 52px;
  }

  body.home .sx-home-benefit h3 {
    font-size: 19px;
  }

  body.home .sx-home-benefit p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.75;
  }

  body.home .sx-home-contact {
    min-height: 440px;
    padding: 70px 0;
  }

  body.home .sx-home-contact__inner {
    min-height: 300px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
  }

  body.home .sx-home-contact h2 {
    margin-top: 13px;
    font-size: 34px;
  }

  body.home .sx-home-contact p:last-child {
    font-size: 14px;
  }

  body.home .sx-home-contact .sx-button {
    width: 100%;
  }

  body.home .sx-footer {
    min-height: 560px;
    padding: 72px 0 28px;
  }

  body.home .sx-footer__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  body.home .sx-footer__grid nav {
    grid-column: auto;
  }

  body.home .sx-footer__contact {
    font-size: 18px;
  }

  body.home .sx-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    margin-top: 58px;
  }

  body.home .sx-home-mobile-nav {
    position: fixed;
    z-index: 240;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    width: auto;
    height: 66px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #e8e8ed;
    box-shadow: 0 3.2px 6.4px 2.4px rgba(0, 0, 0, 0.22);
    color: #000000;
    backdrop-filter: none;
  }

  body.home .sx-home-mobile-nav a,
  body.home .sx-home-mobile-nav > span {
    display: grid;
    min-width: 0;
    height: 66px;
    align-content: center;
    justify-items: center;
    gap: 2px;
    border-radius: 0;
    background: transparent;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 20px;
    text-align: center;
    white-space: nowrap;
  }

  body.home .sx-home-mobile-nav .sx-icon {
    width: 23.53px;
    height: 23.53px;
    color: inherit;
  }

  body.home .sx-home-mobile-nav a.is-current,
  body.home .sx-home-mobile-nav a[aria-current="page"] {
    color: #2c7cc2;
    font-weight: 700;
  }

  body.home .sx-home-mobile-nav > [aria-disabled="true"] {
    opacity: 1;
    cursor: default;
    pointer-events: none;
  }
}

body.home .sx-home-category-grid.sx-home-category-grid--3,
body.home .sx-home-mobile-nav.sx-home-mobile-nav--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 360px) {
  body.home .sx-home-hero__content {
    padding-top: 72px;
  }

  body.home .sx-home-hero__actions {
    width: 280px;
    align-items: center;
    flex-direction: row;
  }

  body.home .sx-home-hero .sx-button {
    width: 135px;
  }

  body.home .sx-home-benefit {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 12px;
  }

  body.home .sx-home-benefit__number {
    font-size: 45px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home .sx-home-hero__eyebrow,
  body.home .sx-home-hero h1,
  body.home .sx-home-hero__lead > p,
  body.home .sx-home-hero__actions,
  body.home .sx-home-hero__scroll {
    animation: none;
    filter: none;
    opacity: 1;
    transform: none;
  }

  body.home .sx-reveal,
  body.home .sx-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body.home .sx-home-product-card__media img,
  body.home .sx-home-category img,
  body.home .sx-home-category h3 {
    transition: none;
  }

  body.home .sx-home-benefits__heading-reveal.sx-reveal,
  body.home .sx-home-benefits__heading-reveal.sx-reveal.is-visible,
  body.home .sx-home-benefits__heading-reveal > .sx-home-eyebrow,
  body.home .sx-home-benefits__heading-reveal > h2,
  body.home .sx-home-benefits__mark.sx-reveal,
  body.home .sx-home-benefits__mark.sx-reveal.is-visible,
  body.home .sx-home-benefits__brand-copy.sx-reveal,
  body.home .sx-home-benefits__brand-copy.sx-reveal.is-visible,
  body.home .sx-home-benefit__copy,
  body.home .sx-home-benefit.is-visible .sx-home-benefit__copy {
    clip-path: none;
    opacity: 1;
    transition: none;
  }

  body.home .sx-home-benefits__heading-reveal.sx-reveal,
  body.home .sx-home-benefits__heading-reveal.sx-reveal.is-visible,
  body.home .sx-home-benefits__heading-reveal > .sx-home-eyebrow,
  body.home .sx-home-benefits__heading-reveal > h2,
  body.home .sx-home-benefits__mark.sx-reveal,
  body.home .sx-home-benefits__mark.sx-reveal.is-visible,
  body.home .sx-home-benefit__copy,
  body.home .sx-home-benefit.is-visible .sx-home-benefit__copy {
    transform: none;
  }

  body.home .sx-home-benefits__brand-copy.sx-reveal,
  body.home .sx-home-benefits__brand-copy.sx-reveal.is-visible {
    transform: none;
  }

  body.home .sx-home-benefit::before,
  body.home .sx-home-benefit:last-child::after {
    transform: scaleX(1);
    transition: none;
  }

  body.home .sx-home-benefit__number {
    transition: none;
  }
}

/* Header and floating navigation alignment */
body:is(.home, .sx-product-chrome) .sx-home-header {
  position: relative;
  height: 120px;
}
body:is(.home, .sx-product-chrome) .sx-home-header__inner {
  width: calc(100% - 192px);
  height: 120px;
  grid-template-rows: 59px 61px;
}
body:is(.home, .sx-product-chrome) .sx-home-header__inner::after { top: 58px; }
body:is(.home, .sx-product-chrome) .sx-home-header__top-left { gap: 0; margin-left: 0; }
body:is(.home, .sx-product-chrome) .sx-home-header__brand .sx-brand__mark { width: 40px; }
body:is(.home, .sx-product-chrome) .sx-home-header__brand .sx-brand__text { display: block; color: #fff; line-height: 1; }
body:is(.home, .sx-product-chrome) .sx-home-header__brand .sx-brand__text strong { font-size: 20px; font-weight: 600; }
body:is(.home, .sx-product-chrome) .sx-home-header__top-right { gap: 30px; }
body:is(.home, .sx-product-chrome) .sx-home-header__account { gap: 10px; padding-left: 0; }
body:is(.home, .sx-product-chrome) .sx-home-header__account > img { width: 36px; height: 36px; min-width: 36px; min-height: 36px; flex-basis: 36px; }
body:is(.home, .sx-product-chrome) .sx-home-header__account-icon { width: 36px; height: 36px; flex-basis: 36px; }
body:is(.home, .sx-product-chrome) .sx-home-header__account-icon .sx-icon { width: 20px; height: 20px; }
body:is(.home, .sx-product-chrome) .sx-home-header__account strong { font-size: 15px; }
body:is(.home, .sx-product-chrome) .sx-home-header__account small { font-size: 13px; }
body:is(.home, .sx-product-chrome) .sx-home-header__currency { height: 36px; gap: 10px; color: #f2f2f2; }
body:is(.home, .sx-product-chrome) .sx-home-header__currency strong { font-size: 16px; }
body:is(.home, .sx-product-chrome) .sx-home-header__bottom-left { font-size: 15px; }
body:is(.home, .sx-product-chrome) .sx-home-header__bottom-right { gap: 0; }
body:is(.home, .sx-product-chrome) .sx-home-header__contact { font-size: 15px; }

body.home .sx-home-mobile-nav {
  position: fixed;
  z-index: 240;
  right: auto;
  bottom: calc(24px + env(safe-area-inset-bottom));
  left: 50%;
  display: grid;
  width: min(720px, calc(100% - 48px));
  height: 64px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 5px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(238,237,242,.94);
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
  color: #161616;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 48px));
  transition: opacity 220ms ease, transform 300ms cubic-bezier(.22,1,.36,1);
  backdrop-filter: blur(18px);
}
body.home .sx-home-mobile-nav.is-visible { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
body.home .sx-home-mobile-nav a,
body.home .sx-home-mobile-nav > span {
  display: flex;
  height: 54px;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  color: #161616;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
body.home .sx-home-mobile-nav .sx-icon { width: 24px; height: 24px; }
body.home .sx-home-mobile-nav a.is-current,
body.home .sx-home-mobile-nav a[aria-current="page"] { background: #050505; color: #fff; }
body.home .sx-home-mobile-nav a.is-current > img { width: 31px; height: auto; flex: 0 0 31px; object-fit: contain; }
body.home .sx-home-mobile-nav > [aria-disabled="true"] { cursor: default; pointer-events: none; }

@media (max-width: 700px) {
  body:is(.home, .sx-product-chrome) .sx-home-header { height: 64px; }
  body:is(.home, .sx-product-chrome) .sx-home-header__inner { width: calc(100% - 40px); height: 64px; grid-template-rows: 64px; }
  body:is(.home, .sx-product-chrome) .sx-home-header__brand .sx-brand__mark { width: 40px; }
  body:is(.home, .sx-product-chrome) .sx-home-header__brand .sx-brand__text strong { font-size: 18px; }
  body.home .sx-home-mobile-nav {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    width: auto;
    height: 66px;
    padding: 5px;
    transform: translateY(calc(100% + 32px));
  }
  body.home .sx-home-mobile-nav.is-visible { transform: translateY(0); }
  body.home .sx-home-mobile-nav a,
  body.home .sx-home-mobile-nav > span { height: 56px; border-radius: 999px; }
  body.home .sx-home-mobile-nav a.is-current,
  body.home .sx-home-mobile-nav a[aria-current="page"] { background: #050505; color: #fff; }
  body.home .sx-home-mobile-nav a.is-current > img { width: 26px; }
}
