/* public/home/css/animate.css */
.text-undeline_ani::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: var(--Primary-Black, #04040c);
}
.text-undeline_ani:hover::after {
  animation: textUndelineAni 0.3s ease-in-out forwards;
}
@keyframes textUndelineAni {
  0% {
    width: 0;
    left: 0;
  }
  100% {
    width: 100%;
    left: 0;
  }
}

/* public/home/css/top-banner.css */
.floor-topBanner {
  position: relative;
}
.floor-topBanner[data-bottom-margin="1"] {
  margin-bottom: 120px;
}
.floor-topBanner .topBanner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.floor-topBanner .topBanner-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  max-width: 1280px;
  margin: auto;
}
.floor-topBanner .topBanner-item-title {
  color: var(--Primary-Black, #04040c);
  text-transform: uppercase;
  line-height: normal;
}
.topBanner-separator {
  height: 40px;
  width: 1px;
  background: rgba(237, 162, 63, 0.2);
}
.floor-topBanner .topBanner-item {
  flex: 1;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.floor-topBanner .topBanner-item-top {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.floor-topBanner .topBanner-item-title {
  font-style: normal;
  font-family: var(--font-family-semibold);
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.floor-topBanner .topBanner-item-desc {
  color: rgba(4, 4, 12, 0.6);
  font-style: normal;
  font-family: var(--font-family-regular);
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topBanner-item i img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .floor-topBanner {
    padding: 12px 0;
    gap: 8px;
    height: 55px;
  }
  .floor-topBanner[data-bottom-margin="1"] {
    margin-bottom: 80px;
  }
  .floor-topBanner .topBanner-item-title {
    font-size: 10px;
    margin-left: 4px;
    line-height: 1;
    transform: translateY(1px);
  }
  .floor-topBanner .topBanner-item {
    padding: 8px;
  }
  .floor-topBanner .topBanner-item i {
    width: 16px;
    height: 16px;
    aspect-ratio: 1/1;
    line-height: 16px;
  }
  .floor-topBanner .topBanner-item-desc {
    font-size: 10px;
    line-height: normal;
  }
  .topBanner-separator {
    height: 16px;
  }
}
@media screen and (min-width: 769px) {
  .floor-topBanner {
    gap: 56px;
    height: 100px;
    padding: 28px 0;
    justify-content: center;
    align-items: center;
  }
  .topBanner-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 24px;
  }
  .topBanner-item i {
    width: 34px;
    height: 34px;
    aspect-ratio: 1/1;
    margin: 0 16px 0 0;
  }
  .floor-topBanner .topBanner-item-title {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .floor-topBanner .topBanner-item-desc {
    font-size: 14px;
    text-align: left;
  }
}
@media screen and (min-width: 1920px) {
  .floor-topBanner {
    gap: 64px;
  }
}
.tab-banner-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.tab-banner-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tab-banner-modal--active .tab-banner-modal__overlay {
  opacity: 1;
}
.tab-banner-modal__content {
  position: relative;
  width: 100%;
  max-width: 728px;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.tab-banner-modal--active .tab-banner-modal__content {
  transform: translateX(0);
}
.tab-banner-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  padding: 0 40px;
  border-bottom: 1px solid #e5e5e5;
}
.tab-banner-modal__title {
  margin: 0;
  font-size: 28px;
  color: var(--Primary-Black, #04040c);
  font-family: var(--font-family-semibold);
  letter-spacing: 0.5px;
}
.tab-banner-modal__close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: opacity 0.2s;
}
.tab-banner-modal__close svg {
  width: 28px;
  height: 28px;
}
.tab-banner-modal__close:hover {
  opacity: 0.6;
}
.tab-banner-modal__body {
  padding: 30px 40px 0 30px;
  color: #04040c;
  overflow-y: auto;
  font-size: 18px;
  margin-bottom: 40px;
  font-family: var(--font-family-regular);
  max-height: calc(100% - 140px);
}
.tab-banner-modal__footer {
  padding: 0 40px;
}
.tab-banner-modal__button {
  display: flex;
  height: 57px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--Primary-Black, #04040c);
}
@media (max-width: 768px) {
  .tab-banner-modal__content {
    max-width: 100%;
  }
  .tab-banner-modal__header {
    padding: 0 16px;
    height: 66px;
  }
  .tab-banner-modal__title {
    font-size: 20px;
  }
  .tab-banner-modal__close {
    width: 24px;
    height: 24px;
    font-size: 24px;
  }
  .tab-banner-modal__body {
    padding: 16px;
    font-size: 14px;
    margin-bottom: 16px;
    max-height: calc(100% - 140px);
  }
  .tab-banner-modal__footer {
    padding: 12px 16px;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .tab-banner-modal__button {
    height: 44px;
    font-size: 14px;
  }
}

/* public/home/css/collections-tabs.css */
.floor-collections {
  --swiper-theme-color: #000;
  --swiper-navigation-color: #000;
  --swiper-navigation-size: 16px;
}
.floor-collections .collections-swiper {
  position: relative;
}
.floor-collections .arrow-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  padding: 10px;
  border-radius: 36px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5.625px);
  aspect-ratio: 1/1;
  top: calc(50% - 34px);
  transform: translateY(-50%);
  z-index: 1;
  color: #fff;
}
.floor-collections .swiper-next.arrow-btn {
  right: 24px;
}
.floor-collections .swiper-prev.arrow-btn {
  left: 24px;
}
.floor-collections h2 {
  color: var(--Primary-Black, #04040c);
  text-align: center;
  font-family: var(--font-family-semibold);
  margin: 0;
  font-weight: unset;
  line-height: normal;
}
.has-tabs.collections-tab {
  border-bottom: 1px solid #e7e7e7;
}
.floor-collections .collections-tab-item {
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-family-regular);
}
.collections-opt .collections-tab-item.active {
  color: var(--Primary-Black, #04040c);
  cursor: default;
  opacity: 1;
}
.collections-tab .tabs-indicator {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  background-color: var(--Primary-Black, #04040c);
  transition: width 0.3s ease, transform 0.3s ease;
}
.floor-collections .product-card-more {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
}
.floor-collections .product-card-more > span {
  color: #fff;
  text-align: center;
  line-height: normal;
  text-transform: uppercase;
  word-wrap: break-word;
  word-break: break-all;
  font-weight: var(--font-family-semibold);
}
.floor-collections .product-card-more button {
  text-decoration: underline;
  color: #fff;
  background: transparent;
  cursor: pointer;
  border: none;
}
@media screen and (max-width: 768px) {
  .floor-collections header {
    margin: 0 auto 16px;
    text-align: center;
  }
  .floor-collections h2 {
    font-size: 20px;
    padding: 0 16px;
    max-width: 100%;
    line-height: normal;
    margin: 0 auto;
    font-family: var(--font-family-semibold);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-break: break-word;
  }
  .collections-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100% !important;
    font-size: 16px;
    font-family: var(--font-family-regular);
  }
  .collections-tab-item {
    flex: 1;
    height: 56px;
    line-height: 56px;
    padding: 0 12px;
    text-align: center;
    color: var(--Primary-Black, #04040c);
  }
  .tabs-indicator {
    width: 50%;
  }
  .floor-collections .product-card-more {
    padding: 0 16px;
  }
  .floor-collections .product-card-more > span {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.6px;
    margin-bottom: 24px;
  }
  .floor-collections .product-card-more button {
    font-size: 14px;
  }
  .floor-collections .swiper-wrapper {
    gap: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }
  .floor-collections .swiper-slide {
    width: calc((100% - 8px) / 2.3);
  }
}
@media screen and (min-width: 769px) {
  .floor-collections header {
    margin: 0 auto 24px;
  }
  .floor-collections h2 {
    font-size: 36px;
    max-width: 100%;
    padding: 0 40px;
    line-height: normal;
  }
  .collections-opt {
    position: relative;
    display: flex;
  }
  .collections-opt .collections-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: auto;
  }
  .collections-opt .collections-tab-item {
    flex-shrink: 0;
    flex: 1;
    width: auto;
    white-space: nowrap;
    height: 58px;
    line-height: 58px;
    cursor: pointer;
    text-align: center;
    font-size: 18px;
    font-family: var(--font-family-regular);
    user-select: none;
    transition: all 0.3s ease;
    color: rgb(4, 4, 12, 0.7);
  }
  .collections-opt .tabs-indicator {
    width: auto;
  }
  .collections-tab-pane {
    position: relative;
  }
  .collections-tab-pane .swiper-button-disabled {
    display: none;
  }
  .floor-collections .product-card-more {
    padding: 0 32px;
  }
  .floor-collections .product-image:hover .product-card-more {
    visibility: visible;
  }
  .floor-collections .last-card .product-image:hover .image-1 {
    visibility: visible;
  }
  .floor-collections .product-card-more > span {
    font-size: 32px;
    letter-spacing: -1.62px;
    margin-bottom: 32px;
  }
  .floor-collections .product-card-more button {
    font-size: 24px;
  }
  .collections-swiper {
    --swiper-slides-per-view: 4;
    --swiper-space-between: 8px;
    min-height: 250px;
  }
  .collections-swiper:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    gap: var(--swiper-space-between);
  }
  .collections-swiper:not(.swiper-initialized) .swiper-slide {
    flex-shrink: 0;
    width: calc((100% - (var(--swiper-slides-per-view) - 1) * var(--swiper-space-between)) / var(--swiper-slides-per-view));
  }
}

/* public/home/css/homeBanner.css */
.home-banner {
  font-size: 0;
}
.home-banner--swiper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.home-banner--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  visibility: hidden;
  position: absolute;
  z-index: 9;
}
.home-banner--prev {
  left: 24px;
}
.home-banner--next {
  right: 24px;
}
.home-banner--swiper:hover .home-banner--prev,
.home-banner--swiper:hover .home-banner--next {
  visibility: visible;
}
.home-banner--indicator {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 32px;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9;
}
.home-banner--indicator-item {
  position: relative;
  border-radius: 6px;
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.3);
  transition: width 0.2s;
  cursor: pointer;
}
.home-banner--indicator-item[data-active="1"]:not([data-type="1"]) {
  background-color: #fff;
}
.home-banner--indicator-item[data-type="1"][data-active="1"] .home-banner--indicator-item-inner {
  position: absolute;
  height: 6px;
  background: #fff;
  left: 0;
  top: 0;
  border-radius: 6px;
}
.home-banner--swiper-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition-property: transform;
  box-sizing: content-box;
}
.home-banner--swiper-item {
  position: relative;
  height: 100%;
  width: 100%;
  flex-shrink: 0;
}
.home-banner--swiper-item a {
  position: relative;
  display: inline-block;
  width: 100%;
}
.home-banner--swiper-item a:has(div.video-js) {
  padding-bottom: unset !important;
}
.home-banner--swiper-item a[data-type="0"] {
  display: inline-block;
}
.home-banner--swiper-item img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  object-fit: contain;
  height: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .home-banner--indicator {
    bottom: 24px;
    padding: 12px 16px;
  }
  .home-banner--indicator-item:not(:first-child) {
    margin-left: 8px;
  }
  .home-banner--indicator-item[data-active="1"][data-type="1"] {
    width: 48px;
  }
}
@media (max-width: 768px) {
  .home-banner--indicator {
    bottom: 16px;
    padding: 12px;
  }
  .home-banner--indicator-item:not(:first-child) {
    margin-left: 4px;
  }
  .home-banner--indicator-item[data-active="1"][data-type="1"] {
    width: 32px;
  }
}
.home-banner div.video-js[data-setup] {
  padding-top: 0 !important;
}
.home-banner video[data-setup] {
  padding-bottom: unset !important;
}

/* public/home/css/cupsheway.css */
.home-cupsheway--sub-title {
  font-family: var(--font-family-semibold);
  color: #5aa8ad;
}
.home-cupsheway--title {
  color: #04040c;
  font-family: var(--font-family-semibold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.home-cupsheway--title-line {
  position: relative;
  flex: 1;
  min-width: 260px;
}
.home-cupsheway--title-line::after {
  content: " ";
  position: absolute;
  right: 0;
  top: 50%;
  width: 54px;
  height: 1px;
  background-color: #e6e6e6;
}
.home-cupsheway--title-line::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 50%;
  width: calc(100% - 174px);
  height: 1px;
  background-color: #e6e6e6;
}
.home-cupsheway--title-line img,
.home-cupsheway--title-line video {
  width: 80px;
  height: 80px;
  float: right;
  margin-right: 75px;
}
.home-cupsheway--content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.home-cupsheway--content-left img,
.home-cupsheway--content-left video {
  width: 100%;
}
.home-cupsheway--content-right-title {
  font-family: var(--font-family-regular);
}
.home-cupsheway--content-right-text {
  display: flex;
}
.home-cupsheway--content-right-text-title {
  opacity: 0.4;
  font-family: var(--font-family-semibold);
}
.home-cupsheway--content-right-text-nav {
}
.home-cupsheway--content-right-text-item {
  font-family: var(--font-family-regular);
}
.home-cupsheway--content-right-text-more {
  position: relative;
  padding: 6px 0;
  font-size: 16px;
  text-decoration: none;
  font-family: var(--font-family-regular);
  line-height: 83%;
  letter-spacing: -0.32px;
  color: #04040c !important;
  display: inline-block;
}
@media (max-width: 768px) {
  .home-cupsheway {
    padding: 0 16px;
  }
  .home-cupsheway--sub-title {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .home-cupsheway--title {
    font-size: 32px;
    margin-bottom: 16px;
    line-height: normal;
  }
  .home-cupsheway--title-line {
    display: none;
  }
  .home-cupsheway--content {
    display: block;
    color: #04040c;
  }
  .home-cupsheway--content-left {
    margin-bottom: 24px;
  }
  .home-cupsheway--content-left img,
  .home-cupsheway--content-left video {
    width: 100%;
  }
  .home-cupsheway--content-right-title {
    font-size: 20px;
    line-height: normal;
    margin-bottom: 24px;
  }
  .home-cupsheway--content-right-text-title {
    font-size: 14px;
    margin-right: 40px;
  }
  .home-cupsheway--content-right-text-item {
    font-size: 16px;
    color: #04040c;
  }
  .home-cupsheway--content-right-text-item:not(:first-child) {
    margin-top: 12px;
  }
  .home-cupsheway--content-right-text-more {
    padding: 0;
    margin-top: 24px;
  }
}
@media (min-width: 769px) and (max-width: 1439px) {
  .home-cupsheway {
    padding: 0 32px;
    line-height: normal;
  }
  .home-cupsheway--sub-title {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .home-cupsheway--title {
    font-size: 40px;
    margin-bottom: 24px;
  }
  .home-cupsheway--content-left {
    margin-right: 40px;
    width: calc((100vw - 104px) * 0.42);
  }
  .home-cupsheway--title-line {
    margin-left: 16px;
  }
  .home-cupsheway--content-right {
    display: flex;
    flex-direction: column;
    align-self: center;
    flex: 1;
  }
  .home-cupsheway--content-right-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .home-cupsheway--content-right-text-title {
    margin-right: 32px;
    font-size: 16px;
    width: calc((100% - 32px) * 0.36);
  }
  .home-cupsheway--content-right-text-nav {
    width: calc((100% - 32px) * 0.64);
  }
  .home-cupsheway--content-right-text-more {
    margin-top: 56px;
    font-size: 16px;
  }
  .home-cupsheway--content-right-text-item {
    font-size: 16px;
  }
  .home-cupsheway--content-right-text-item:not(:first-child) {
    margin-top: 16px;
  }
  .home-cupsheway--title-line img,
  .home-cupsheway--title-line video {
    width: 60px;
    height: 60px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .home-cupsheway {
    padding: 0 40px;
    line-height: normal;
  }
  .home-cupsheway--sub-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .home-cupsheway--title {
    font-size: 54px;
    margin-bottom: 32px;
  }
  .home-cupsheway--content-left {
    margin-right: 72px;
    width: calc((100vw - 152px) * 0.42);
  }
  .home-cupsheway--title-line {
    margin-left: 48px;
  }
  .home-cupsheway--content-right {
    display: flex;
    flex-direction: column;
    align-self: center;
    flex: 1;
  }
  .home-cupsheway--content-right-title {
    font-size: 34px;
    margin-bottom: 100px;
  }
  .home-cupsheway--content-right-text-title {
    margin-right: 40px;
    font-size: 20px;
    width: calc((100% - 40px) * 0.36);
  }
  .home-cupsheway--content-right-text-nav {
    width: calc((100% - 40px) * 0.64);
  }
  .home-cupsheway--content-right-text-more {
    font-size: 20px;
    margin-top: 56px;
  }
  .home-cupsheway--content-right-text-item {
    font-size: 20px;
  }
  .home-cupsheway--content-right-text-item:not(:first-child) {
    margin-top: 16px;
  }
}
@media (min-width: 1920px) {
  .home-cupsheway {
    padding: 0 64px;
    line-height: normal;
  }
  .home-cupsheway--sub-title {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .home-cupsheway--title {
    font-size: 80px;
    margin-bottom: 32px;
  }
  .home-cupsheway--content-left {
    margin-right: 96px;
    width: calc((100vw - 224px) * 0.42);
  }
  .home-cupsheway--title-line {
    margin-left: 80px;
  }
  .home-cupsheway--content-right {
    display: flex;
    flex-direction: column;
    align-self: center;
    flex: 1;
  }
  .home-cupsheway--content-right-title {
    font-size: 48px;
    margin-bottom: 100px;
  }
  .home-cupsheway--content-right-text-title {
    margin-right: 64px;
    font-size: 24px;
    width: calc((100% - 64px) * 0.36);
  }
  .home-cupsheway--content-right-text-nav {
    width: calc((100% - 64px) * 0.64);
  }
  .home-cupsheway--content-right-text-more {
    font-size: 24px;
    margin-top: 56px;
  }
  .home-cupsheway--content-right-text-item {
    font-size: 24px;
  }
  .home-cupsheway--content-right-text-item:not(:first-child) {
    margin-top: 16px;
  }
}

/* public/home/css/ins.css */
.home-ins[hidden] {
  display: none;
}
.home-ins--content {
  color: #04040c;
  box-sizing: content-box;
}
.home-ins--content-title {
  font-family: var(--font-family-semibold);
  line-height: 88%;
}
.home-ins--content-text {
  line-height: 130%;
  font-family: var(--font-family-regular);
}
.marquee-container {
  scrollbar-width: none;
}
.home-ins--gallery-item {
  position: relative;
}
.home-ins--shop-now-cover {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100%;
  z-index: 30;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.home-ins--shop-now {
  position: absolute;
  z-index: 50;
  font-family: var(--font-family-regular);
}
.home-ins--gallery-item img,
.home-ins--gallery-item video {
  cursor: pointer;
  width: 100%;
  object-fit: cover;
}
@keyframes move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-content {
  display: inline-flex;
  width: max-content;
  animation: move 60s linear infinite;
}
.marquee-content:hover {
  animation-play-state: paused;
}
@media (max-width: 768px) {
  .home-ins--content {
    padding: 40px 16px 24px;
  }
  .home-ins--content-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .home-ins--content-text {
    font-size: 16px;
  }
  .home-ins--gallery-item {
    width: calc(200vw / 3) !important;
    height: calc(6400vw / 69) !important;
  }
  .home-ins--gallery-item img,
  .home-ins--gallery-item video {
    aspect-ratio: 23 / 32;
  }
  .home-ins--shop-now {
    color: #fff;
    text-decoration: underline;
    font-size: 14px;
    bottom: 16px;
    left: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1439px) {
  .home-ins--content {
    padding: 48px 32px 32px;
    display: flex;
    flex-direction: column;
  }
  .home-ins--content-title {
    font-size: 30px;
  }
  .home-ins--content-text {
    font-size: 18px;
    width: 342px;
    align-self: flex-end;
  }
  .home-ins--gallery-item {
    width: calc(200vw / 9) !important;
    transition: transform 0.3s ease;
  }
  .home-ins--shop-now,
  .home-ins--shop-now-cover {
    visibility: hidden;
  }
  .home-ins--gallery-item:hover .home-ins--shop-now,
  .home-ins--gallery-item:hover .home-ins--shop-now-cover {
    visibility: visible;
  }
  .home-ins--gallery-item:hover {
    transform: scale(1.1);
    z-index: 10;
  }
  .home-ins--gallery-item img,
  .home-ins--gallery-item video {
    aspect-ratio: 43 / 60;
  }
  .home-ins--shop-now {
    color: #fff;
    text-decoration: underline;
    font-size: 16px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .home-ins--content {
    padding: 64px 40px 64px;
    display: flex;
    flex-direction: column;
  }
  .home-ins--content-title {
    font-size: 36px;
  }
  .home-ins--content-text {
    font-size: 20px;
    width: 428px;
    align-self: flex-end;
  }
  .home-ins--gallery-item {
    width: calc(200vw / 9) !important;
    transition: transform 0.3s ease;
  }
  .home-ins--shop-now,
  .home-ins--shop-now-cover {
    visibility: hidden;
  }
  .home-ins--gallery-item:hover .home-ins--shop-now,
  .home-ins--gallery-item:hover .home-ins--shop-now-cover {
    visibility: visible;
  }
  .home-ins--gallery-item:hover {
    transform: scale(1.1);
    z-index: 10;
  }
  .home-ins--gallery-item img,
  .home-ins--gallery-item video {
    aspect-ratio: 43 / 60;
  }
  .home-ins--shop-now {
    color: #fff;
    text-decoration: underline;
    font-size: 14px;
  }
  .home-ins--shop-now {
    color: #fff;
    text-decoration: underline;
    font-size: 16px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 1920px) {
  .home-ins--content {
    padding: 96px 64px 84px;
    display: flex;
    flex-direction: column;
  }
  .home-ins--content-title {
    font-size: 36px;
  }
  .home-ins--content-text {
    font-size: 20px;
    width: 570px;
    align-self: flex-end;
  }
  .home-ins--gallery-item {
    width: calc(200vw / 9) !important;
    transition: transform 0.3s ease;
  }
  .home-ins--shop-now,
  .home-ins--shop-now-cover {
    visibility: hidden;
  }
  .home-ins--gallery-item:hover .home-ins--shop-now,
  .home-ins--gallery-item:hover .home-ins--shop-now-cover {
    visibility: visible;
  }
  .home-ins--gallery-item:hover {
    transform: scale(1.1);
    z-index: 10;
  }
  .home-ins--gallery-item img,
  .home-ins--gallery-item video {
    aspect-ratio: 43 / 60;
  }
  .home-ins--shop-now {
    color: #fff;
    text-decoration: underline;
    font-size: 16px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* public/home/css/shop-look.css */
.floor-shoplook header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.floor-shoplook .shoplook-title {
  color: var(--Primary-Black, #04040c);
  line-height: normal;
  font-family: var(--font-family-semibold);
}
.floor-shoplook .shoplook-link {
  color: var(--Primary-Black, #04040c);
  font-size: 16px;
  font-style: normal;
  font-family: var(--font-family-regular);
  line-height: normal;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}
.shoplook-swiper-item-img {
  padding-bottom: 150%;
  position: relative;
  height: 0;
  font-size: 0;
}
.shoplook-swiper .shoplook-swiper-item-img img {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 100%;
  display: block;
  width: 100%;
  height: auto;
}
.shoplook-mask {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  height: 100%;
}
.shoplook-popup,
.shoplook-mask {
  opacity: 0;
  transition: opacity 0.3s;
}
.shoplook-popup.is-visible,
.shoplook-mask.is-visible {
  opacity: 1;
}
.shoplook-popup-main {
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  top: 50%;
  left: 50%;
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
  transform: translate(-50%, -50%);
}
.shoplook-popup-wrap {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  transition: transform 0.3s;
  -webkit-overflow-scrolling: touch;
}
.shoplook-popup-left {
  width: 37%;
  height: 100%;
  display: flex;
  align-items: center;
}
.shoplook-popup-mainImg {
  height: 0;
  padding-bottom: 150%;
  position: relative;
  width: 100%;
}
.shoplook-popup-mainImg img,
.shoplook-product-img img {
  max-width: 100%;
  object-fit: cover;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  max-height: 100%;
}
.shoplook-product-img img {
  object-fit: cover;
  height: 100%;
}
.shoplook-popup-right {
  width: 63%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.shoplook-product-swiper {
  width: calc(100% - 240px);
}
.shoplook-popup-close {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.swiper-arrow-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  padding: 10px;
  border-radius: 36px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5.625px);
  aspect-ratio: 1/1;
  top: calc(50% - 34px);
  transform: translateY(-50%);
  z-index: 1;
  color: #fff;
}
.shoplook-swiper-btns .swiper-next.swiper-arrow-btn {
  right: 24px;
}
.shoplook-swiper-btns .swiper-prev.swiper-arrow-btn {
  left: 24px;
}
.shoplook-swiper-btns .swiper-button-disabled {
  display: none;
}
.shoplook-popup-header {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-size: 20px;
  color: var(--Primary-Black, #04040c);
  font-family: var(--font-family-semibold);
}
.shoplook-popup-header span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  .floor-shoplook header {
    padding: 0 16px;
    margin-bottom: 16px;
  }
  .floor-shoplook .shoplook-title {
    font-size: 20px;
  }
  .floor-shoplook .shoplook-link {
    margin: 24px 0 0 16px;
    color: var(--Primary-Black, #04040c);
    font-size: 16px;
    font-style: normal;
    text-transform: uppercase;
    padding: 0;
  }
  .shoplook-popup-wrap {
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
  }
  .shoplook-popup-left,
  .shoplook-popup-mainImg,
  .shoplook-popup-mainImg img {
    width: 100%;
  }
  .shoplook-popup-right {
    width: 100%;
    flex: 1;
    flex-shrink: 0;
    margin-bottom: 25px;
  }
  .shoplook-popup-right > div {
    width: 100%;
    position: relative;
  }
  .shoplook-product-swiper {
    width: 100%;
  }
  .shoplook-swiper-btns {
    margin-top: 32px;
  }
}
@media screen and (min-width: 769px) {
  .floor-shoplook header {
    padding: 0 40px;
    margin-bottom: 24px;
  }
  .floor-shoplook .shoplook-title {
    font-size: 36px;
    max-width: 560px;
    line-height: normal;
  }
  .shoplook-popup-header {
    position: absolute;
    top: 16px;
    right: 16px;
    height: unset;
  }
  .shoplook-popup-header span {
    display: none;
  }
}
@media screen and (min-width: 1920px) {
  .floor-shoplook header {
    padding: 0 64px;
    margin-bottom: 24px;
  }
}
.floor-shoplook .hotspot {
  position: absolute;
  width: 44px;
  height: 44px;
  background: transparent;
  transform: translate(-16px, -16px);
  cursor: pointer;
  z-index: 10;
}
.hotspot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background-color: rgb(255, 255, 255, 0.4);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: breathe 2s infinite ease-in-out;
}
.hotspot::after {
  box-sizing: content-box;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 3px;
  background-color: transparent;
  border: 7px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .hotspot::before {
    width: 23px;
    height: 23px;
  }
  .hotspot::after {
    border: 5px solid #ffffff;
  }
}
@keyframes breathe {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
  }
}

/* public/home/css/app-guide.css */
.floor-app-download {
  background-color: #1a1a1a;
}
.app-banner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #ffffff;
  width: 100%;
  box-sizing: border-box;
}
.app-banner img {
  width: 100%;
  height: 100%;
}
.phone-section {
  flex-shrink: 0;
}
.phone-frame {
  width: 220px;
  height: 440px;
  background-color: #000;
  border: 8px solid #333;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}
.phone-screen {
  height: calc(100% - 25px);
  aspect-ratio: 1/1.5;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-screen .video-poster {
  width: 100%;
  display: block;
  height: 100%;
}
.floor-app-download .video-custom-js,
.floor-app-download .video-js,
.floor-app-download .vjs-poster {
  background-color: transparent !important;
}
.promo-text-section {
  flex: 1;
  width: 100%;
}
.tagline {
  color: var(--Secondary-Fresh-Aqua, #caeeee);
  font-style: normal;
  font-family: var(--font-family-semibold);
}
.main-offer {
  color: #fff;
  font-style: normal;
  font-family: var(--font-family-semibold);
  text-transform: uppercase;
  word-break: break-word;
  line-height: normal;
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefits-list li {
  position: relative;
  margin-bottom: 8px;
  color: #fff;
  font-style: normal;
  font-family: var(--font-family-regular);
  letter-spacing: -0.36px;
  line-height: 1.375;
  display: flex;
  align-items: center;
}
.benefits-list li i {
  width: 16px;
  height: 16px;
  min-width: 16px;
  line-height: 16px;
  margin-right: 12px;
}
.benefits-list li span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.5;
}
.download-section {
  flex-shrink: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.download-header {
  display: flex;
  gap: 21px;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.download-title {
  color: var(--Primary-Soft-Ivory, #fffeee);
  font-size: 14px;
  font-style: normal;
  font-family: var(--font-family-semibold);
  text-transform: uppercase;
  line-height: normal;
  margin: 0;
  max-width: 200px;
  word-break: break-word;
}
.divider {
  width: 100%;
  height: 1px;
  background-color: #555;
  flex: 1;
}
.qr-and-stores {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px;
  background-color: #fff;
}
.qr-code {
  width: 102px;
  height: 102px;
  flex-shrink: 0;
}
.qr-code img {
  max-width: 100%;
  max-height: 100%;
}
.store-badge {
  margin-right: 10px;
  overflow: hidden;
  max-width: 150px;
  height: 44px;
}
.store-badge img {
  height: 100%;
  display: block;
}
@media (max-width: 1024px) {
  .app-banner {
    height: unset;
    padding: 32px 16px;
    flex-direction: column;
    justify-content: unset;
    align-items: flex-start;
  }
  .tagline {
    font-size: 12px;
    margin: 0 0 12px 0;
  }
  .main-offer {
    font-size: 20px;
    margin: 0 0 20px 0;
  }
  .benefits-list li {
    font-size: 15px;
  }
  .benefits-list li:last-child {
    margin-bottom: 32px;
  }
  .download-section {
    width: 100%;
  }
  .download-title {
    font-size: 14px;
  }
  .download-header {
    margin-bottom: 16px;
  }
  .qr-and-stores {
    padding: 14px 12px;
    width: 100%;
    justify-content: center;
  }
  .qr-code {
    gap: 50px;
  }
}
@media (min-width: 1025px) {
  .app-banner {
    height: 324px;
    padding: 0 133px;
  }
  .promo-text-section {
    margin-right: 120px;
  }
  .phone-section {
    margin-right: 60px;
    height: 100%;
    display: flex;
    align-items: flex-end;
  }
  .tagline {
    font-size: 16px;
    margin: 0 0 8px 0;
  }
  .main-offer {
    font-size: 24px;
    margin: 0 0 24px 0;
  }
  .benefits-list li {
    font-size: 14px;
  }
  .benefits-list li i {
    width: 16px;
    height: 16px;
    line-height: 16px;
    margin-right: 12px;
  }
}
@media (min-width: 1920px) {
  .app-banner {
    height: 400px;
    max-width: 1920px;
  }
}

/* public/home/css/home.css */
:root {
  --Primary-Black: #04040c;
  --Primary-Black-70: rgba(4, 4, 12, 0.7);
  --Text-White: #fff;
}
* {
  box-sizing: border-box;
}
.module-bottom {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .module-bottom {
    margin-bottom: 64px;
  }
}

