@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::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;
}
@media (hover: hover) {
  .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%;
  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;
}
@media (hover: hover) {
  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);
}
@media (hover: hover) {
  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;
}
@media (hover: hover) {
  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);
  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%;
  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;
}
@media (hover: hover) {
  .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 {
    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;
  }
}
.bh-body {
  margin: 0;
  overflow: hidden;
  background: #0a0a18;
}

.bh {
  position: fixed;
  inset: 0;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

/* ----------------------------------------------------------------
   BACKGROUND VIDEO — full-screen cover
----------------------------------------------------------------- */
.bh-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.bh-bg--mobile {
  display: none;
}

/* poster frame over the bg video (see bluehour.html). Sits just above the
   video so it hides iOS Low Power Mode's play-icon; fades out only once the
   video actually plays (JS toggles .is-hidden on the "playing" event). */
.bh-bg-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.6s ease;
}
.bh-bg-poster.is-hidden {
  opacity: 0;
}

/* Decorative glowing stars (mix-blend lighten). Positions from Figma as % of
   the artboard, sizes in vw so they scale. Star4 asset is missing. */
.bh-deco {
  position: absolute;
  z-index: 1;
  mix-blend-mode: lighten;
  pointer-events: none;
  user-select: none;
}

.bh-deco--1 {
  left: 18.75%;
  top: 18.6%;
  width: 11.5vw;
}

.bh-deco--2 {
  left: 46.5%;
  top: 3.75%;
  width: 11.5vw;
}

.bh-deco--3 {
  left: 70.4%;
  top: 28.6%;
  width: 11.5vw;
}

.bh-deco--5 {
  left: 13.8%;
  top: 57.4%;
  width: 15.6vw;
}

/* ----------------------------------------------------------------
   CHROME — Home (top-left), Download + Sound (bottom-right)
----------------------------------------------------------------- */
.bh-home {
  position: fixed;
  top: 18px;
  left: 18px;
  width: 37px;
  height: 37px;
  z-index: 20;
  filter: drop-shadow(0 0 4px #fff);
  transition: opacity 0.2s ease-in-out, transform 0.08s ease;
}

.bh-home img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bh-controls {
  position: fixed;
  right: 16px;
  bottom: 17px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 13px;
}

.bh-sound,
.bh-download {
  width: 37px;
  height: 37px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  filter: drop-shadow(0 0 4px #fff);
  transition: opacity 0.2s ease-in-out, transform 0.08s ease;
}

.bh-sound-on,
.bh-sound-off,
.bh-download img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (hover: hover) {
  .bh-home:hover,
  .bh-sound:hover,
  .bh-download:hover {
    opacity: 0.7;
  }
}
.bh-home:active,
.bh-sound:active,
.bh-download:active {
  transform: scale(0.9);
}

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

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

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

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

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

/* ----------------------------------------------------------------
   REVIEW GATE — centred card (desktop / tablet)
----------------------------------------------------------------- */
.bh-review {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 381px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: opacity 0.3s ease;
}

.bh[data-state=photo] .bh-review {
  opacity: 0;
  pointer-events: none;
}

.bh-sparkle {
  width: 104px;
  height: auto;
}

.bh-title {
  margin: 9px 0 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.bh-subtitle {
  margin: 9px 0 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

/* 5-star rating — outline #6BB5FF by default, gradient-filled + glow when on */
.bh-stars {
  margin: 18px 0 0;
  display: flex;
  gap: 8px;
}

.bh-star {
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 0.1s ease;
}

.bh-star svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.bh-star svg path {
  fill: none;
  stroke: #6bb5ff;
  stroke-width: 1;
  transition: fill 0.15s ease;
}

.bh-star.is-on svg path {
  fill: url(#bhStarGrad);
  stroke: #6bb5ff;
  stroke-width: 0.7;
}

.bh-star.is-on {
  filter: drop-shadow(0 0 5px rgba(110, 209, 255, 0.75));
}

@media (hover: hover) {
  .bh-star:hover {
    transform: scale(1.08);
  }
}
/* comment box — transparent w/ thin white border + glow */
.bh-comment {
  margin: 21px 0 0;
  width: 381px;
  height: 120px;
  padding: 10px 14px;
  box-sizing: border-box;
  background: transparent;
  border: 0.5px solid #fff;
  box-shadow: 0 0 5.25px #fff;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  resize: none;
  outline: none;
}

.bh-comment::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* submit — disabled (dimmed) until 5 stars are picked */
.bh-submit {
  margin: 25px 0 0;
  width: 158px;
  height: 40px;
  border: none;
  border-radius: 3px;
  background: #0a53c3;
  box-shadow: 0 0 4px #0a53c3, inset 0 0 17.1px rgba(255, 255, 255, 0.4);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.08s ease;
}

.bh-submit:disabled {
  opacity: 0.4;
  box-shadow: none;
  cursor: not-allowed;
}

@media (hover: hover) {
  .bh-submit:not(:disabled):hover {
    opacity: 0.92;
  }
}
.bh-submit:not(:disabled):active {
  transform: scale(0.97);
}

/* ----------------------------------------------------------------
   PHOTO CAROUSEL — fades in over the bg once unlocked
----------------------------------------------------------------- */
.bh-carousel {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0s linear 0.4s;
}

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

.bh-carousel-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 18, 0.35);
}

.bh-swiper {
  position: relative;
  z-index: 1;
  width: min(1084px, 62.7vw);
  height: 75vh;
}

.bh-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

/* size to the photo (capped to the box) so portrait shots stand tall and
   landscape shots fit wide — neither is cropped (same as heyhi) */
.bh-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

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

/* carousel arrows — white chevrons */
.bh-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 16;
  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) {
  .bh-arrow:hover {
    opacity: 0.7;
  }
}
.bh-arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

.bh-chevron {
  display: block;
  width: 30px;
  height: 46px;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.4));
}

.bh-prev {
  left: 1%;
}

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

.bh-next {
  right: 1%;
}

/* close (X) — top-right of the carousel */
.bh-close {
  position: fixed;
  top: 15px;
  right: 16px;
  z-index: 17;
  width: 37px;
  height: 37px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  filter: drop-shadow(0 0 4px #fff);
  transition: opacity 0.2s ease-in-out;
}

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

.bh-defs {
  position: absolute;
  width: 0;
  height: 0;
}

/* ----------------------------------------------------------------
   TABLET (<= 1080) — same review card, repositioned decor stars
   (artboard 834 x 1154)
----------------------------------------------------------------- */
@media (max-width: 1080px) {
  .bh-deco--1 {
    left: 6.6%;
    top: 15.1%;
    width: 24vw;
  }
  .bh-deco--2 {
    left: 39.4%;
    top: 6.4%;
    width: 24vw;
  }
  .bh-deco--3 {
    left: 74.3%;
    top: 26.5%;
    width: 24vw;
  }
  .bh-deco--5 {
    left: 8.3%;
    top: 68.5%;
    width: 32vw;
  }
}
/* ----------------------------------------------------------------
   MOBILE (<= 600) — smaller card + fonts (artboard 402 x 735)
----------------------------------------------------------------- */
@media (max-width: 600px) {
  .bh-bg--wide {
    display: none;
  }
  .bh-bg--mobile {
    display: block;
  }
  .bh-home {
    top: 7px;
    left: 8px;
    width: 25px;
    height: 25px;
  }
  .bh-controls {
    right: 8px;
    bottom: 9px;
    gap: 8px;
  }
  .bh-sound,
  .bh-download {
    width: 25px;
    height: 25px;
  }
  .bh-close {
    top: 8px;
    right: 8px;
    width: 25px;
    height: 25px;
  }
  .bh-review {
    width: 277px;
  }
  .bh-sparkle {
    width: 76px;
  }
  .bh-title {
    margin-top: 7px;
    font-size: 14px;
    text-shadow: 0 0 3.635px rgba(255, 255, 255, 0.8);
  }
  .bh-subtitle {
    margin-top: 7px;
    font-size: 11px;
    text-shadow: 0 0 3.635px rgba(255, 255, 255, 0.8);
  }
  .bh-stars {
    margin-top: 13px;
    gap: 6px;
  }
  .bh-star {
    width: 26px;
    height: 26px;
  }
  .bh-comment {
    margin-top: 15px;
    width: 277px;
    height: 87px;
    padding: 8px 10px;
    border-width: 0.364px;
    box-shadow: 0 0 3.817px #fff;
    font-size: 16px; /* 16px avoids iOS zoom-on-focus */
  }
  .bh-submit {
    margin-top: 18px;
    width: 115px;
    height: 29px;
    border-radius: 2.181px;
    box-shadow: 0 0 2.908px #0a53c3, inset 0 0 12.432px rgba(255, 255, 255, 0.4);
    font-size: 11px;
    text-shadow: 0 0 2.908px rgba(255, 255, 255, 0.8);
  }
  .bh-swiper {
    width: 100vw;
  }
  .bh-chevron {
    width: 22px;
    height: 34px;
  }
  .bh-deco--1 {
    left: 5%;
    top: 17.6%;
    width: 27vw;
  }
  .bh-deco--2 {
    left: 33%;
    top: 7.3%;
    width: 30vw;
  }
  .bh-deco--3 {
    left: 66%;
    top: 16.3%;
    width: 29vw;
  }
  .bh-deco--5 {
    left: 10.7%;
    top: 71%;
    width: 37vw;
  }
}

/*# sourceMappingURL=page_bluehour.css.map */
