@charset "UTF-8";
:root {
  --side-padding-s: 50px;
  --side-padding-m: 7vw;
  --side-padding-l: 10vw;
  --side-padding-xl: 24vw;
  --edge: max(var(--side-padding-s), calc((100% - 1465px) / 2));
  --edge-reviews: max(var(--side-padding-s), calc((100% - 1161px) / 2));
  --edge-shop: max(var(--side-padding-s), calc((100% - 1421px) / 2));
}
@media (max-width: 900px) {
  :root {
    --side-padding-s: 30px;
    --side-padding-m: 5vw;
    --side-padding-l: 7vw;
    --side-padding-xl: 10vw;
  }
}
@media (max-width: 700px) {
  :root {
    --side-padding-s: 20px;
    --side-padding-m: 40px;
  }
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #1b1b1b;
  background-color: #ffffff;
}

/* ----------------------------------------------------------------
   WIP PASSWORD GATE
----------------------------------------------------------------- */
.gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(180deg, #edf9ff 0%, #bfe4fb 100%);
}

html.unlocked .gate {
  display: none;
}

.gate-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 380px;
  padding: 40px 34px;
  text-align: center;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.gate-card .gate-text {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #5a5a5a;
}
.gate-card .gate-input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 15px;
  color: #000;
  background: #fff;
  border: 1px solid #c1c1c1;
  border-radius: 8px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
}
.gate-card .gate-input::-moz-placeholder {
  color: #cfcfcf;
}
.gate-card .gate-input::placeholder {
  color: #cfcfcf;
}
.gate-card .gate-input.invalid {
  border-color: #e0584f;
  box-shadow: inset 0 0 4px rgba(224, 88, 79, 0.4);
}
.gate-card .gate-btn {
  width: 100%;
  margin-top: 14px;
  padding: 12px 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, #7fce5a 0%, #54ac32 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.55), 0 1px 3px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: filter 0.2s ease-in-out;
}
.gate-card .gate-btn:hover {
  filter: brightness(1.05);
}
.gate-card .gate-error {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #e0584f;
}

/* ----------------------------------------------------------------
   SHARED SECTION HEADER
----------------------------------------------------------------- */
.section-head {
  text-align: center;
  padding: 0 var(--side-padding-s);
}
.section-head h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  color: #000;
}
.section-head h2 .accent {
  color: #2867a6;
}
.section-head p {
  width: 80%;
  max-width: 460px;
  margin: 13px auto 0;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

/* ----------------------------------------------------------------
   NAV
----------------------------------------------------------------- */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--edge);
  background: #ffffff;
  box-shadow: 0px 0px 7.2px rgba(61, 61, 61, 0.48), inset 0px 0px 35px white, inset 0px 0px 18px #cfcfcf;
  z-index: 50;
}
header.site-header .brand {
  position: relative;
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 226px;
  height: 81px;
  background: #f4f4f4;
  box-shadow: 0px 4px 9.8px rgba(0, 0, 0, 0.23);
}
header.site-header .brand .logo-rotator {
  position: relative;
  width: 170px;
  height: 60px;
}
header.site-header .brand .logo-rotator img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
header.site-header .brand .logo-rotator img.active {
  opacity: 1;
}
header.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: 46px;
}
header.site-header .nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  text-shadow: 0px 0px 10.2px white;
  transition: opacity 0.2s ease-in-out;
}
header.site-header .nav-links a:hover {
  opacity: 0.55;
}
header.site-header .btn-duty-free {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7fce5a 0%, #54ac32 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-shadow: none !important;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.55), 0 1px 3px rgba(0, 0, 0, 0.25);
}
header.site-header .btn-duty-free:hover {
  opacity: 0.92;
}
header.site-header .btn-duty-free svg {
  width: 15px;
  height: 16px;
}

/* ----------------------------------------------------------------
   FOOTER
----------------------------------------------------------------- */
footer.site-footer {
  margin-top: 22px;
  padding: 46px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f4f4f4;
  border-radius: 60px 60px 0 0;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
}
footer.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
}
footer.site-footer .footer-links a {
  font-size: 15px;
  font-weight: 700;
  color: #342677;
  text-decoration: underline;
  transition: opacity 0.2s ease-in-out;
}
footer.site-footer .footer-links a:hover {
  opacity: 0.6;
}
footer.site-footer .footer-copy {
  margin: 20px 0 0;
  font-size: 15px;
  font-weight: 400;
  color: #342677;
}

/* ----------------------------------------------------------------
   PRODUCT CARD + GRID (shop grid & recommended products)
----------------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 50px;
}

.product-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
.product-card .pc-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #fff;
}
.product-card .pc-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.product-card .pc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.13);
  pointer-events: none;
}
.product-card .pc-img .sold-out {
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: auto;
  z-index: 2;
}
.product-card .pc-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 11px;
}
.product-card .pc-name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #272727;
  line-height: 1;
}
.product-card .pc-tagline {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  color: #5a5a5a;
}
.product-card .pc-price {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #f10000;
}
.product-card.is-sold-out {
  cursor: default;
}
.product-card.is-sold-out .pc-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}
.product-card:not(.is-sold-out):hover .pc-img img {
  transform: scale(1.03);
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .product-grid {
    -moz-column-gap: 14px;
         column-gap: 14px;
    row-gap: 28px;
  }
  .product-card .pc-name,
  .product-card .pc-tagline,
  .product-card .pc-price {
    font-size: 12px;
  }
}
/* ----------------------------------------------------------------
   PAYMENTS (shop & product detail)
----------------------------------------------------------------- */
.shop-payments {
  display: flex;
  justify-content: center;
  margin: 70px 0;
}
.shop-payments img {
  width: auto;
  height: 45px;
}

/* ----------------------------------------------------------------
   SHARED RESPONSIVE (nav / footer / section header)
----------------------------------------------------------------- */
@media (max-width: 1080px) {
  header.site-header .brand {
    width: 188px;
    height: 81px;
  }
  header.site-header .brand .logo-rotator {
    width: 152px;
    height: 45px;
  }
  header.site-header .nav-links {
    gap: 18px;
  }
  header.site-header .nav-links a {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  header.site-header .nav-links a:not(.btn-duty-free) {
    display: none;
  }
}
@media (max-width: 600px) {
  header.site-header {
    height: 40px;
  }
  header.site-header .brand {
    width: 112px;
    height: 50px;
  }
  header.site-header .brand .logo-rotator {
    width: 90px;
    height: 26px;
  }
  header.site-header .btn-duty-free {
    padding: 6px 12px;
    font-size: 11px;
    gap: 4px;
  }
  header.site-header .btn-duty-free svg {
    width: 13px;
    height: 14px;
  }
  .section-head h2 {
    font-size: 15px;
  }
  .section-head p {
    font-size: 10px;
    margin-top: 6px;
  }
  footer.site-footer {
    margin-top: 0;
    padding: 46px 50px 30px;
  }
  footer.site-footer .footer-links {
    gap: 16px 18px;
  }
  footer.site-footer .footer-links a {
    font-size: 12px;
  }
  footer.site-footer .footer-copy {
    font-size: 8px;
  }
  .shop-payments {
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .shop-payments img {
    height: 34px;
  }
}
.e2l-body {
  margin: 0;
  overflow: hidden;
  background: #f4f4f4;
}

.e2l {
  position: fixed;
  inset: 0;
  overflow: hidden;
}

/* ----------------------------------------------------------------
   BOARDING SPLASH — soft blue -> white gradient with a gently
   blinking prompt. Clicking fades it out (JS) to reveal the
   experience behind it and start the BGM.
----------------------------------------------------------------- */
.e2l-splash {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: pointer;
  background: linear-gradient(180deg, #b9d4ee 0%, #ffffff 100%);
  box-shadow: inset 0 0 120px #fff, inset 0 0 100px #fff;
  transition: opacity 0.6s ease-in-out;
}

.e2l-splash.is-out {
  opacity: 0;
  pointer-events: none;
}

.e2l-splash-text {
  margin: 0;
  max-width: 504px;
  font-family: "Inter", sans-serif;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  text-shadow: 0px 2px 9.8px rgba(0, 0, 0, 0.25), 0px 0px 4px rgba(62, 62, 62, 0.1), 0px 0px 0px #fff;
  animation: e2l-splash-blink 2.4s ease-in-out infinite;
}

@keyframes e2l-splash-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
/* ----------------------------------------------------------------
   STAGE — the Figma artboard, scaled to cover the viewport.
   Children are positioned in raw artboard px; the transform zooms
   the whole thing, keeping the video mapped to the seat.
----------------------------------------------------------------- */
.e2l-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1728px;
  height: 986px;
  transform-origin: center;
  transform: translate(-50%, -50%) scale(var(--e2l-scale, 1));
}

.e2l-plane {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.e2l-plane--wide {
  left: -11px;
  top: 1px;
  width: 1750px;
  height: 985px;
}

.e2l-plane--mobile {
  display: none;
}

/* Seat-back screen — the video is mapped here */
.e2l-screen {
  position: absolute;
  left: 574px;
  top: 286px;
  width: 617px;
  height: 347px;
}

.e2l-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: #d5e4f7;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.64);
}

/* "Click to Learn More" pill, pinned to the screen's bottom-right */
.e2l-learn {
  position: absolute;
  right: 17px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 12px;
  border: 1px solid #cfcfcf;
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfbfb 0%, #ececec 100%);
  color: #595959;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: filter 0.2s ease-in-out;
}

@media (hover: hover) {
  .e2l-learn:hover {
    filter: brightness(0.96);
  }
}
.e2l-learn-chevron {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}

/* ----------------------------------------------------------------
   CHROME — home / sound / download, anchored to viewport corners
----------------------------------------------------------------- */
.e2l-home {
  position: fixed;
  top: 18px;
  left: 18px;
  width: 60px;
  height: 60px;
  z-index: 20;
}

.e2l-home img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.e2l-controls {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 20;
}

.e2l-sound,
.e2l-download {
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.e2l-home,
.e2l-sound,
.e2l-download {
  transition: opacity 0.2s ease-in-out;
}

@media (hover: hover) {
  .e2l-home:hover,
  .e2l-sound:hover,
  .e2l-download:hover {
    opacity: 0.7;
  }
}
.e2l-sound-on,
.e2l-sound-off,
.e2l-download img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* download only exists in the photo state */
.e2l-download {
  display: none;
}

.e2l[data-state=photo] .e2l-download {
  display: block;
}

/* sound icon reflects the real muted state */
.e2l-sound-off {
  display: none;
}

.e2l[data-muted=true] .e2l-sound-on {
  display: none;
}

.e2l[data-muted=true] .e2l-sound-off {
  display: block;
}

/* ----------------------------------------------------------------
   PHOTO CAROUSEL — fades in over the (blurred) cabin. Loops.
----------------------------------------------------------------- */
.e2l-carousel {
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0s linear 0.4s;
}

.e2l[data-state=photo] .e2l-carousel {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease-in-out;
}

/* Learn More pill hides while the carousel is open */
.e2l[data-state=photo] .e2l-learn {
  display: none;
}

/* Swiper fills the seat-back screen */
.e2l-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.005);
}

.e2l-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #d2d2d2;
}

.e2l-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.e2l-photo-label {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #000;
}

/* Carousel arrows — filled chevrons w/ soft shadow, inside the screen */
.e2l-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}

@media (hover: hover) {
  .e2l-arrow:hover {
    opacity: 0.7;
  }
}
.e2l-arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

.e2l-chevron {
  display: block;
  width: 34px;
  height: 52px;
  filter: drop-shadow(0 0 3.3px rgba(0, 0, 0, 0.25));
}

.e2l-prev {
  left: 8px;
}

.e2l-prev .e2l-chevron {
  transform: rotate(180deg);
}

.e2l-next {
  right: 8px;
}

/* close (X) — top-right inside the screen; download (↓) bottom-right */
.e2l-close {
  position: absolute;
  top: 11px;
  right: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}

.e2l-download {
  position: absolute;
  bottom: 10px;
  right: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}

@media (hover: hover) {
  .e2l-close:hover,
  .e2l-download:hover {
    opacity: 0.7;
  }
}
.e2l-close img,
.e2l-download img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ----------------------------------------------------------------
   TABLET  (<= 1080px)  — artboard 834 x 1180
----------------------------------------------------------------- */
@media (max-width: 1080px) {
  .e2l-stage {
    width: 834px;
    height: 1180px;
  }
  .e2l-plane--wide {
    left: -630px;
    top: 0;
    width: 2052px;
    height: 1154px;
  }
  .e2l-screen {
    left: 58px;
    top: 335px;
    width: 721px;
    height: 405px;
  }
  .e2l-learn {
    right: 14px;
    bottom: 17px;
  }
  .e2l-home,
  .e2l-sound {
    width: 56px;
    height: 56px;
  }
  .e2l-photo-label {
    font-size: 20px;
  }
  .e2l-splash-text {
    font-size: 28px;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  }
}
/* ----------------------------------------------------------------
   MOBILE  (<= 600px)  — artboard 402 x 735  (Plane_Mobile.jpg)
----------------------------------------------------------------- */
@media (max-width: 600px) {
  .e2l-stage {
    width: 402px;
    height: 735px;
  }
  .e2l-plane--wide {
    display: none;
  }
  .e2l-plane--mobile {
    display: block;
    left: -6px;
    top: 0;
    width: 414px;
    height: 735px;
  }
  .e2l-screen {
    left: 36px;
    top: 231px;
    width: 331px;
    height: 186px;
  }
  .e2l-learn {
    right: 7px;
    bottom: 11px;
    height: 25px;
    padding: 0 9px;
    gap: 4px;
    font-size: 8.6px;
    border-width: 0.8px;
    border-radius: 12.5px;
  }
  .e2l-learn-chevron {
    width: 9px;
    height: 9px;
  }
  .e2l-home {
    top: 10px;
    left: 10px;
  }
  .e2l-controls {
    right: 10px;
    bottom: 10px;
    gap: 8px;
  }
  .e2l-home,
  .e2l-sound {
    width: 35px;
    height: 35px;
  }
  .e2l-photo-label {
    font-size: 20px;
  }
  /* in-screen carousel controls scaled for the smaller mobile screen */
  .e2l-close {
    top: 7px;
    right: 9px;
    width: 22px;
    height: 22px;
  }
  .e2l-download {
    bottom: 6px;
    right: 9px;
    width: 22px;
    height: 22px;
  }
  .e2l-chevron {
    width: 20px;
    height: 30px;
  }
  .e2l-prev {
    left: 6px;
  }
  .e2l-next {
    right: 6px;
  }
  .e2l-splash {
    box-shadow: inset 0 0 100px #fff, inset 0 0 50px #fff;
  }
  .e2l-splash-text {
    font-size: 15px;
  }
}/*# sourceMappingURL=page_ever2late.css.map */