.hero-scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: clamp(34px, 5vh, 50px);
  display: flex;
  width: 160px;
  height: 170px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  color: var(--navy);
  text-decoration: none;
  transform: translateX(-50%);
}

.hero-scroll-label {
  display: none !important;
}

.hero-scroll-arrows {
  position: relative;
  display: block;
  width: 118px;
  height: 146px;
  filter: drop-shadow(0 0 7px rgba(230, 255, 63, .96)) drop-shadow(0 0 22px rgba(230, 255, 63, .76));
}

.hero-scroll-arrows::before {
  position: absolute;
  inset: 4px -12px -4px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(230, 255, 63, .24), transparent 68%);
  content: "";
  animation: heroChevronHalo 1.7s ease-in-out infinite;
}

.hero-scroll-arrows i {
  position: absolute;
  left: 50%;
  display: block;
  width: 68px;
  height: 68px;
  border-right: 8px solid var(--lime);
  border-bottom: 8px solid var(--lime);
  border-radius: 0 0 7px 0;
  opacity: .34;
  transform: translateX(-50%) rotate(45deg);
  animation: heroChevronFlow 1.7s cubic-bezier(.32, 0, .2, 1) infinite;
}

.hero-scroll-arrows i:nth-child(1) {
  top: -9px;
  animation-delay: 0s;
}

.hero-scroll-arrows i:nth-child(2) {
  top: 18px;
  animation-delay: .12s;
}

.hero-scroll-arrows i:nth-child(3) {
  top: 45px;
  animation-delay: .24s;
}

.hero-scroll-arrows i:nth-child(4) {
  top: 72px;
  animation-delay: .36s;
}

.hero-scroll-cue:hover .hero-scroll-arrows,
.hero-scroll-cue:focus-visible .hero-scroll-arrows {
  filter: drop-shadow(0 0 7px rgba(230, 255, 63, 1)) drop-shadow(0 0 25px rgba(230, 255, 63, .92));
}

.boutique-scroll-cue-up.hero-scroll-cue {
  top: clamp(2px, 1vh, 10px);
  bottom: auto;
}

.boutique-scroll-cue-up .hero-scroll-arrows {
  transform: rotate(180deg);
}

.boutique-home {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(92px, 11vh, 122px) 4vw clamp(184px, 22vh, 220px);
  color: #10233a;
  background: #cbd8e1;
}

.boutique-home-backdrop,
.boutique-home-atmosphere {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.boutique-home-backdrop {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  transform: scale(1.012);
  animation: boutiqueBackdropBreath 12s ease-in-out infinite alternate;
}

.boutique-home-atmosphere {
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 43%, rgba(238, 246, 250, .6) 0%, rgba(222, 235, 242, .22) 31%, transparent 58%),
    linear-gradient(180deg, rgba(178, 199, 214, .06) 0%, transparent 48%, rgba(12, 37, 61, .26) 100%);
}

.boutique-home-brand {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 4vw;
  display: flex;
  align-items: center;
  gap: 10px;
  font: 800 17px Manrope, sans-serif;
}

.boutique-home-brand > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--watermelon);
  font-size: 12px;
  transform: rotate(-8deg);
}

.boutique-home-brand small {
  margin-left: 2px;
  padding: 5px 8px;
  border: 1px solid rgba(16, 35, 58, .3);
  border-radius: 99px;
  font-size: 8px;
  letter-spacing: .18em;
}

.boutique-home-content {
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: min(740px, 43vw);
  margin-top: -2vh;
  text-align: center;
}

.boutique-home-kicker {
  margin: 0 0 20px;
  color: #10233a;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.boutique-home h2 {
  max-width: 100%;
  margin: 0;
  font-family: "Ka Blam", Impact, sans-serif;
  font-size: clamp(50px, 5.15vw, 86px);
  font-weight: 400;
  line-height: .97;
  letter-spacing: .018em;
  text-transform: uppercase;
  text-wrap: balance;
}

.boutique-home h2 em {
  color: #4967ef;
  font-style: normal;
}

.boutique-home-intro {
  width: min(520px, 92%);
  margin: 18px auto 0;
  color: rgba(16, 35, 58, .78);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.boutique-home-button {
  display: inline-flex;
  min-width: 226px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 16px 28px;
  border-radius: 99px;
  color: #10233a;
  background: var(--lime);
  box-shadow: 0 16px 38px rgba(22, 50, 75, .25);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  transition: transform .2s ease, box-shadow .2s ease;
}

.boutique-home-button:hover,
.boutique-home-button:focus-visible {
  box-shadow: 0 20px 44px rgba(22, 50, 75, .32);
  transform: translateY(-3px);
}

.boutique-home-button:focus-visible,
.hero-scroll-cue:focus-visible {
  outline: 3px solid #10233a;
  outline-offset: 4px;
}

.boutique-home-shelf {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: clamp(22px, 3.5vh, 38px);
  left: 4vw;
  width: min(920px, 72vw);
  margin: auto;
  padding: 13px 15px 15px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 20px;
  color: #fff;
  background: rgba(10, 31, 52, .82);
  box-shadow: 0 22px 60px rgba(8, 27, 46, .3);
  backdrop-filter: blur(18px) saturate(120%);
}

.boutique-home-shelf > header {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 4px 9px;
}

.boutique-home-shelf header p,
.boutique-home-shelf header h3 {
  margin: 0;
}

.boutique-home-shelf header p {
  color: var(--lime);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .17em;
}

.boutique-home-shelf header h3 {
  margin-top: 2px;
  font: 700 14px Manrope, sans-serif;
}

#boutiqueHomeCount {
  color: rgba(255, 255, 255, .7);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .11em;
  text-align: right;
}

.boutique-home-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.boutique-home-product {
  display: grid;
  min-width: 0;
  min-height: 68px;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  color: inherit;
  background: rgba(255, 255, 255, .09);
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.boutique-home-product:hover,
.boutique-home-product:focus-visible {
  border-color: rgba(231, 255, 63, .58);
  background: rgba(255, 255, 255, .15);
  outline: none;
  transform: translateY(-2px);
}

.boutique-home-product:focus-visible {
  box-shadow: 0 0 0 3px rgba(231, 255, 63, .32);
}

.boutique-home-product-media {
  position: relative;
  display: grid;
  width: 58px;
  height: 54px;
  overflow: hidden;
  place-items: center;
  border-radius: 9px;
  color: #10233a;
  background: linear-gradient(145deg, #e4edf2, #9bb3c5);
  font: 800 13px Manrope, sans-serif;
}

.boutique-home-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boutique-home-product-media b {
  position: absolute;
  top: 4px;
  left: 4px;
  padding: 3px 5px;
  border-radius: 99px;
  color: #10233a;
  background: var(--lime);
  font-size: 6px;
  letter-spacing: .08em;
}

.boutique-home-product-copy {
  min-width: 0;
}

.boutique-home-product-copy small,
.boutique-home-product-copy strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.boutique-home-product-copy small {
  color: rgba(255, 255, 255, .61);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.boutique-home-product-copy strong {
  margin-top: 4px;
  font: 700 11px Manrope, sans-serif;
}

.boutique-home-product-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  white-space: nowrap;
  font: 800 11px Manrope, sans-serif;
}

.boutique-home-product-price del {
  color: rgba(255, 255, 255, .48);
  font-size: 8px;
  font-weight: 600;
}

.boutique-home-product-skeleton {
  height: 68px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255,255,255,.07) 25%, rgba(255,255,255,.16) 50%, rgba(255,255,255,.07) 75%);
  background-size: 240% 100%;
  animation: boutiqueSkeleton 1.4s ease infinite;
}

.boutique-home-products-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 15px 18px;
  border: 1px dashed rgba(255, 255, 255, .2);
  border-radius: 12px;
  color: rgba(255, 255, 255, .76);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

@keyframes heroChevronFlow {
  0%, 15% {
    opacity: .3;
    transform: translate(-50%, -8px) rotate(45deg) scale(.88);
  }
  42% {
    opacity: 1;
    transform: translate(-50%, 0) rotate(45deg) scale(1);
  }
  76%, 100% {
    opacity: .32;
    transform: translate(-50%, 9px) rotate(45deg) scale(.94);
  }
}

@keyframes heroChevronHalo {
  0%, 100% { opacity: .38; transform: scale(.88); }
  48% { opacity: 1; transform: scale(1.08); }
}

@keyframes boutiqueBackdropBreath {
  from { transform: scale(1.012); }
  to { transform: scale(1.032); }
}

@keyframes boutiqueSkeleton {
  from { background-position: 160% 0; }
  to { background-position: -70% 0; }
}

@media (max-width: 1050px) {
  .boutique-home {
    padding-right: 3vw;
    padding-left: 3vw;
  }

  .boutique-home-content {
    width: min(680px, 56vw);
  }

  .boutique-home-shelf {
    right: 3vw;
    left: 3vw;
    width: min(900px, 88vw);
  }
}

@media (max-width: 720px) {
  .hero-scroll-cue {
    bottom: 28px;
    width: 132px;
    height: 148px;
  }

  .hero-scroll-arrows {
    width: 108px;
    height: 138px;
  }

  .hero-scroll-arrows i {
    width: 60px;
    height: 60px;
    border-width: 0 7px 7px 0;
  }

  .hero-scroll-arrows i:nth-child(1) {
    top: -6px;
  }

  .hero-scroll-arrows i:nth-child(2) {
    top: 18px;
  }

  .hero-scroll-arrows i:nth-child(3) {
    top: 42px;
  }

  .hero-scroll-arrows i:nth-child(4) {
    top: 66px;
  }

  .boutique-home {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    justify-content: center;
    padding: 86px 18px 24px;
  }

  .boutique-home-backdrop {
    object-position: 19% center;
  }

  .boutique-home-atmosphere {
    background:
      linear-gradient(90deg, rgba(210, 225, 233, .88), rgba(222, 235, 241, .72)),
      linear-gradient(180deg, transparent 45%, rgba(12, 37, 61, .4));
  }

  .boutique-home-brand {
    top: 22px;
    left: 20px;
  }

  .boutique-home-content {
    width: 100%;
    margin: auto 0 26px;
  }

  .boutique-home h2 {
    font-size: clamp(43px, 14.5vw, 66px);
  }

  .boutique-home-intro {
    max-width: 380px;
    font-size: 12px;
  }

  .boutique-home-shelf {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin: 0;
  }

  .boutique-home-products {
    display: flex;
    overflow-x: auto;
    padding-bottom: 2px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .boutique-home-product,
  .boutique-home-product-skeleton {
    min-width: min(286px, 82vw);
    scroll-snap-align: start;
  }
}

@media (max-width: 420px) {
  .boutique-home {
    justify-content: flex-start;
  }

  .boutique-home-content {
    margin-top: auto;
  }

  .boutique-home-kicker {
    margin-bottom: 14px;
    font-size: 9px;
  }

  .boutique-home-intro {
    margin-top: 12px;
  }

  .boutique-home-button {
    min-height: 49px;
    margin-top: 17px;
  }

  .boutique-home-shelf > header {
    align-items: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-arrows::before,
  .hero-scroll-arrows i,
  .boutique-home-backdrop,
  .boutique-home-product-skeleton {
    animation: none;
  }

  .hero-scroll-arrows i {
    opacity: .82;
  }

  .boutique-home-button {
    transition: none;
  }

  .boutique-home-product {
    transition: none;
  }
}
