/** Shopify CDN: Minification failed

Line 1686:1 Unexpected "/"

**/
:root {
  --rivo-page-background-color: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-body-family);
}

html {
  -webkit-text-size-adjust: 100%;
  /* Prevent font scaling in landscape while allowing user zoom */
}

body {
  color: #031c24;
  word-break: break-word;
  line-height: 1.5;
}

input {
  height: 4rem !important;
}

a {
  text-decoration: none;
  text-underline-offset: 0.4rem;
  color: inherit;
}

li {
  list-style: none;
}

img {
  display: block;
  object-fit: cover;
}

:root {
  --primary: #031c24;
  --size-18: 18px;
  --secondary: #e88c73;
  --alternate:
    /*cccc#FC296B */
    rgb(15, 35, 42);
  --page-width: 100%;
  --icon-size: 20px !important;
}

*:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* start公共样式封装 */
.fabrique-modal-enter {
  animation: fabrique-modal-in 0.2s ease;
}

.fabrique-modal-leave {
  animation: fabrique-modal-out 0.2s ease forwards;
}

@keyframes fabrique-modal-in {
  0% {
    opacity: 0;
  }
}

@keyframes fabrique-modal-out {
  to {
    opacity: 0;
  }
}

@keyframes fabrique-btt-drawer-in {
  0% {
    transform: translateY(100%);
  }

  to {
    transform: translate(0);
  }
}

.fabrique-drawer-fade-enter-active {
  animation: fabrique-btt-drawer-in 0.3s;
}

.fabrique-drawer-fade-leave-active {
  animation: fabrique-btt-drawer-in 0.3s reverse;
}

.fabrique-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: #000;
}

.fabrique-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4.4rem;
  border: none;
  border-radius: 0.4rem;
  text-decoration: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.fabrique-button-black {
  background-color: #031c24;
  color: #ffffff;
}

.fabrique-button-black_plain {
  background-color: #fff;
  border: 0.1rem solid #031c24;
  color: #031c24;
}

.fabrique-button-black_plain:hover {
  background-color: #031c24;
  color: #ffffff;
}

.fabrique-button-white_plain {
  background-color: #fff;
  border: 0.1rem solid #fff;
  color: #fff;
}

.fabrique-button-white_plain:hover {
  background-color: #031c24;
  border-color: #031c24;
}

.fabrique-dashed {
  position: relative;
}

.fabrique-dashed::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.1rem;
  background-image: url(dashed.svg);
  background-color: transparent;
  opacity: 0.2;
}

.fabrique-toast {
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.fabrique-toast-text {
  padding: 0.8rem 1.6rem;
  border-radius: 0.2rem;
  background: #031c24;
  color: #ffffff;
}

.fabrique-loading-mask {
  z-index: 9999;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background-color: hsla(0, 0%, 100%, 0.9);
  transition: opacity 0.3s;
}

.loading-wrapper {
  position: relative;
  display: flex;
  width: 15.3rem;
  height: 4rem;
  overflow: hidden;
}

.loading-svg-wrapper {
  display: flex;
  gap: 2rem;
  animation: 5s infinite c047;
  padding: 0 0.7rem;
}

.loading-svg-line {
  position: absolute;
  top: 0.4rem;
  left: 0;
}

.loading-svg {
  font-size: 3.2rem;
  animation: 0.83s infinite c048;
}

@keyframes c047 {
  0% {
    transform: translateX(0%);
  }

  16.66% {
    transform: translateX(-11%);
  }

  33.33% {
    transform: translateX(-22.5%);
  }

  50% {
    transform: translateX(-33.5%);
  }

  66.66% {
    transform: translateX(-44.5%);
  }

  83.33% {
    transform: translateX(-56%);
  }

  100% {
    transform: translateX(-67.5%);
  }
}

@keyframes c048 {
  60% {
    transform: rotate(0deg);
  }

  80% {
    transform: rotate(10deg);
  }

  90% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.fabrique-loading-spinner_circular {
  font-size: 4.2rem;
  animation: loading-rotate 2s linear infinite;
}

.fabrique-loading-spinner_circular-path {
  animation: loading-dash 1.5s ease-in-out infinite;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-width: 2;
  stroke: #031c24;
  stroke-linecap: round;
}

.fabrique-page-width {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 5.2rem 0;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  z-index: 1;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3.2rem 0;
  background: linear-gradient(180deg,
      rgba(3, 28, 36, 0) 0%,
      rgba(3, 28, 36, 0.2) 100%);
}

.swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  background-color: #fff;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.fabrique-swiper-button-prev {
  z-index: 1;
  position: absolute;
  left: 5.2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.fabrique-swiper-button-prev_icon {
  font-size: 2.4rem;
  color: #ffffff;
}

.fabrique-swiper-button-next {
  z-index: 1;
  position: absolute;
  right: 5.2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .fabrique-swiper-button-next:hover {
    background: rgba(3, 28, 36, 0.4);
  }
  .fabrique-swiper-button-prev:hover {
    background: rgba(3, 28, 36, 0.4);
  }
}

/* Mobile – 用 active */
@media (hover: none) and (pointer: coarse) {
  .fabrique-swiper-button-next:active {
    background: rgba(3, 28, 36, 0.4);
  }

  .fabrique-swiper-button-prev:active {
    background: rgba(3, 28, 36, 0.4);
  }
  
}

.fabrique-swiper-button-next_icon {
  font-size: 2.4rem;
  color: #ffffff;
}

.fabrique-swiper-pagination--black .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  background-color: #031c24;
}

@keyframes loading-rotate {
  to {
    transform: rotate(1turn);
  }
}

@keyframes loading-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -4rem;
  }

  to {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -12rem;
  }
}

.fabrique-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fabrique-multi-ellipsis--l2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.fabrique-multi-ellipsis--l2,
.fabrique-multi-ellipsis--l3 {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fabrique-multi-ellipsis--l3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.c999 {
  color: #999;
}

.fw500 {
  font-weight: 500;
}

/* end公共样式封装 */

.product__media-toggle:focus-visible:after {
  border: 0 !important;
  box-shadow: none !important;
}

.btn--full {
  width: 100% !important;
}

.customer a.button {
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.button,
.button-label,
.shopify-challenge__button,
.customer button customer .button {
  font-size: 12px !important;
}

.button:not([disabled]):hover,
.shopify-challenge__button:hover,
.customer button:hover,
.shopify-payment-button__button--unbranded:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary) !important;
}

.underlined-link:hover,
.customer a:hover,
.inline-richtext a:hover {
  text-decoration-thickness: unset;
  text-decoration-color: var(--alternate);
}

a.button.btn--full.btn--outline,
.button,
.shopify-challenge__button,
.customer button customer .button {
  border: 1px solid;
  transition: background-color 0.2s ease-in-out;
}

a.button.btn--full.btn--outline {
  border: 1px solid;
  font-size: 14px !important;
}

.button:before,
.shopify-challenge__button:before,
.customer button:before,
.shopify-payment-button__button--unbranded:before,
.shopify-payment-button [role="button"]:before,
.cart__dynamic-checkout-buttons [role="button"]:before {
  display: none;
}

.button:after,
.shopify-challenge__button:after,
.customer button:after,
.shopify-payment-button__button--unbranded:after {
  display: none;
}

.mega-menu__link {
  color: rgba(var(--color-foreground), 1);
}

body {
  font-size: 1.4rem;
  letter-spacing: 0;
}

.announcement-bar {
  background: transparent !important;
}

.field__input:focus,
.field__input:not(:placeholder-shown),
.field__input:-webkit-autofill,
.customer .field input:focus,
.customer .field input:not(:placeholder-shown),
.customer .field input:-webkit-autofill {
  outline: none !important;
  box-shadow: none !important;
}

.cst-modal .global-media-settings {
  border: 0 !important;
}

.header__icon:hover .icon,
.modal__close-button:hover .icon {
  transform: unset !important;
}

.button,
.shopify-challenge__button,
.customer button,
button.shopify-payment-button__button--unbranded {
  min-width: calc(12rem + var(--buttons-border-width) * 0);
  min-height: calc(3.4rem + var(--buttons-border-width) * 2);
}

facet-remove span:hover {
  color: #999 !important;
}





.designer-context {
  display: flex;
  align-items: center;
  height: 6.4rem;
  color: #999999;
}

@media (min-width: 1499.9px) {
  .left-content {
    width: 20% !important;
  }

  .right-content {
    max-width: 80%;
    width: 652px !important;
  }
}

.related-designer-section.content-container--full-width a:hover {
  text-decoration: none !important;
  color: #031c24 !important;
}

@media (min-width: 767px) {
  .designer-content-detail.content-container--full-width {
    display: flex;
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .footer-block__details-content {
    display: block !important;
  }

  .designer-products.content-container--full-width,
  .related-designer-section.content-container--full-width {
    max-width: 1440px !important;
    margin: 0 auto;
  }

  .section-designer_banner-padding .content-section-custom .collection__title {
    padding: 0rem !important;
  }

  .collection-hero__text-wrapper h1.onlytitle:after {
    content: " ";
    display: block;
    width: 100%;
    height: 1px;
    background-image: url(dashed.svg);
    position: relative;
    transition: 0.3s;
    right: 0;
    border: 0 !important;
    top: 52px !important;
    outline: none !important;
    box-shadow: none !important;
    opacity: 0.3;
    bottom: 0;
  }

  .collection-hero__text-wrapper .collection-hero__description:after {
    content: " ";
    display: block;
    width: 100%;
    height: 1px;
    background-image: url(dashed.svg);
    position: relative;
    transition: 0.3s;
    right: 0;
    border: 0 !important;
    top: 52px !important;
    outline: none !important;
    box-shadow: none !important;
    opacity: 0.3;
    bottom: 0;
  }

  #shopify-section-template--22241919271231__main .related-designer-section .blog_info p {
    line-height: 22px !important;
  }

  .related-designer-section .collection__view-all a {
    position: relative;
    left: -2.5rem;
  }

  predictive-search.search-modal__form,
  .search__input.field__input {
    border-radius: 4px;
    background: #edf0f0;
    height: 4.5rem !important;
  }

  .gruop-letter .designer-info-disabled {
    position: relative;
    color: #999999;
    cursor: pointer;
  }

  .gruop-letter .designer-info-disabled:hover .designer-info-desc {
    display: block !important;
  }

  .gruop-letter .designer-info-disabled .designer-info-desc {
    position: absolute;
    left: -1.6rem;
    top: 0;
    transform: translate(0, -100%);
    background: #edf0f0;
    width: max-content;
    padding: 0.8rem 1.6rem;
    color: #031c24;
  }
}

.designer-content-detail.content-container--full-width {
  max-width: 1440px !important;
  margin: 0 auto;
}

.designer-content-detail .other-desc-section .content {
  line-height: 22px;
}

.collection facet-filters-form {
  margin-bottom: 3.2rem;
}

.related-designer-section a:hover,
.designer-content-detail a:hover {
  text-decoration: none !important;
}

/*header*/
.collection-hero__text-wrapper h1 {
  padding-bottom: 2.4rem;
}

.header__menu-item:hover span,
details[open]>.header__menu-item,
.header__active-menu-item {
  text-decoration-color: var(--alternate) !important;
}

details[open]:hover>.header__menu-item {
  text-decoration-thickness: 0;
}

.header__menu-item:hover .header__active-menu-item {
  text-decoration: unset;
}

.announcement-bar__message {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  padding: 1.4rem 0;
  letter-spacing: 0;
}

.header .list-menu--inline {
  gap: 1.6rem;
}

.header__menu-item .icon-caret {
  right: 0.35rem;
  height: 0.7rem;
  top: calc(50% - 0.3rem);
}

.header .cart-count-bubble {
  position: absolute;
  top: 0;
  right: 0;
  width: max-content;
  transform: translate(100%, -50%);
  font-size: 1.2rem;
  color: var(--secondary);
}

.field__button {
  height: 5.5rem;
}

.header__icon svg,
.header__icon .icon {
  width: 2rem;
  height: 2rem;
}

.header__icon,
.header__icon--cart .icon {
  height: 2rem;
  width: 2rem;
}

.mega-menu__list.megamenu-with-images {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 50% !important;
  float: left;
  padding-right: 32px;
  padding-left: 14%;
}

.mega-menu__promo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 50% !important;
  float: left;
  gap: 32px;
}

.mega-menu__promo img {
  width: 100%;
  transition: transform var(--duration-long) ease;
}

.mega-menu__promo .img-holder {
  padding-bottom: 150%;
}

.mega-menu__promo .img-holder figure img {
  object-fit: cover;
}

.mega-menu__content {
  border: 0 !important;
  z-index: 1;
}

.mega-menu__promo a {
  text-decoration: none;
}

.mega-menu__promo a {
  text-decoration: none !important;
}

.mega-menu__promo .h6 {
  margin-bottom: 0;
  font-size: 12px;
  text-transform: capitalize;
  color: rgba(var(--color-foreground), 1) !important;
}

.mega-menu__promo p:not(.h6) {
  margin-bottom: 0;
  color: #999999;
  text-transform: capitalize;
  font-size: 12px;
  margin-top: 0;
}

.mega-menu__link--level-2 {
  font-weight: 500 !important;
  color: rgba(var(--color-foreground), 1);
}

.mega-menu__link {
  color: rgba(var(--color-foreground), 1);
}

.mega-menu__promo a img:hover {
  transform: scale(1);
}

.mega-menu__list {
  padding-left: 14%;
  padding-right: 14%;
}

.mega-menu__link {
  color: rgba(var(--color-foreground), 1);
}

.mega-menu__promo p:not(.h6) {
  text-decoration: none !important;
}

.mega-menu__promo img {
  object-fit: cover;
  transform: scale(1) !important;
}

.mega-menu__promo a:hover {
  opacity: 0.5;
}

.mega-menu__promo a {
  text-decoration: none !important;
  transition: all 0.2s;
}

.mega-menu__link:hover,
.mega-menu__link--active {
  text-decoration: none !important;
}

.product-grid .scroll-trigger.animate--slide-in {
  transform: unset !important;
}

#HeaderMenu-designers-view-all,
#HeaderDrawer-designers-view-all {
  color: #e88c73 !important;
}

/*header animation underline*/
.mega-menu__link:before,
.header__menu-item span:before,
summary.list-menu__item span:before {
  content: '';
  transform-origin: left;
  background-image: url(dashed-ov.svg);
  pointer-events: none;
  width: 100%;
  height: 1px;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  position: absolute;
  inset-block-end: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
}

.fabrique-header-menu-item-1 {
  cursor: default;
}

.mega-menu__link:hover::before,
.mega-menu__link--active:before,
.header__menu-item span:hover:before,
details[open]>.header__menu-item span::before,
.header__active-menu-item:before {
  transform: scaleX(1) !important;
  transform-origin: bottom left !important;
}

details[open]>.header__menu-item {
  text-decoration: none !important;
}

.header__menu-item span {
  position: relative;
  text-decoration: none !important;
  line-height: 25px;
}

.mega-menu__link {
  position: relative;
}

/* account */
.customer form {
  margin-top: 1.6rem !important;
}

.customer>h1,
.customer__title {
  font-size: var(--size-18);
  letter-spacing: -0.4px;
}

.show_account_bg .policy-text,
.policy-text a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0px;
  color: rgba(153, 153, 153, 1);
}

.customer button {
  margin: 2.4rem 0 2.4rem !important;
}

.policy-text p {
  margin: 0;
}

.show_account_bg .login-section,
.show_account_bg .register-section {
  border-top: 0px dashed !important;
  padding-top: 0px;
  position: relative;
}

.show_account_bg .login-section:before,
.show_account_bg .register-section:before {
  content: " ";
  display: block;
  width: 100%;
  height: 1px;
  background-image: url("dashed-white.svg");
  position: absolute;
  top: 0;
  transition: 0.3s;
  z-index: 1;
  right: 0px;
  border: 0 !important;
  top: unset !important;
  outline: none !important;
  box-shadow: none !important;
  opacity: 1;
}

.show_account_bg .login-section p,
.show_account_bg .register-section p {
  padding-top: 24px;
  padding-bottom: 24px;
  margin-bottom: 0;
}

.show_account_bg .login-section p,
.show_account_bg .register-section p {
  font-size: var(--size-18);
  letter-spacing: 0;
  font-weight: 500;
  margin-top: 0;
  letter-spacing: -0.4px;
  color: rgba(var(--color-foreground), 1);
}

.show_account_bg:before {
  content: "";
  background-color: var(--account-bg-overlay-color);
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: var(--account-bg-opacity);
}

.show_account_bg {
  min-height: unset;
}

.show_account_bg {
  position: relative;
  background-size: cover !important;
}

.show_account_bg .login-register-cover-video-mask {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.show_account_bg .login-register-cover-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.show_account_bg .customer:not(.account):not(.order) {
  background: transparent !important;
}

.show_account_bg .customer:not(.account):not(.order) {
  z-index: 2;
  position: relative;
}

.show_account_bg .customer .field input:focus,
.customer .field input:not(:placeholder-shown),
.customer .field input:-webkit-autofill {
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
}

.show_account_bg .customer .field,
.customer .field input {
  background-color: rgba(255, 255, 255, 0) !important;
  position: relative;
}

.show_account_bg .customer .field input label {
  opacity: 0 !important;
}

.show_account_bg .customer .field label {
  display: none !important;
}

.show_account_bg .customer .field input::placeholder {
  opacity: 1;
  color: rgba(153, 153, 153, 1);
  font-size: 14px;
}

.show_account_bg .customer .field:after,
.customer select:after,
.localization-form__select:after {
  display: none;
}

.field__input,
.select__select,
.customer .field input,
.customer select {
  height: 5.6rem;
}

.show_password {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  height: 100%;
  cursor: pointer;
  color: #ffffff;
}

.show_account_bg .customer .field input[name="customer[password]"] {
  padding-right: 48px !important;
}

.show_account_bg .login .field+a:hover {
  color: #fff;
}

.show_account_bg .login .field+a {
  margin-top: 1rem;
  color: rgba(153, 153, 153, 1);
}

.customer:not(.account):not(.order) {
  text-align: left !important;
}

.show_account_bg .customer .field input {
  padding: 16px 0 !important;
  border-bottom: 0.5px dashed rgba(216, 216, 216, 1) !important;
}

.show_account_bg .login .field+a {
  margin-top: 1.6rem;
  user-select: none;
}

.show_account_bg .login p {
  margin: 0rem 0;
  color: #fff;
  margin-top: 0 !important;
}

.show_account_bg .customer .field:after {
  content: " ";
  display: block;
  width: 100%;
  height: 1px;
  background-image: url("dashed-d8.svg");
  position: absolute;
  bottom: 0;
  transition: 0.3s;
  z-index: 1;
  right: 0px;
  border: 0 !important;
  top: unset !important;
  outline: none !important;
  box-shadow: none !important;
}

.show_account_bg .customer .field input {
  border-bottom: 0 !important;
}

.field__input:focus-visible,
.select__select:focus-visible,
.customer .field input:focus-visible,
.customer select:focus-visible,
.localization-form__select:focus-visible.localization-form__select:after {
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
}

.shopify-challenge__container .shopify-challenge__button {
  margin-top: 20px;
}

.customer form {
  margin-top: 0 !important;
}

#recover:target {
  margin-bottom: 8px;
}

.customer form[action="/account/recover"] {
  margin-top: 16px !important;
}

/* account css end */
.scroll-area {
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  overflow-x: auto;
  overflow-y: hidden;
}

.scroll-area::-webkit-scrollbar {
  display: none;
}

.snap-start {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.snap-center {
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.caption {
  font-size: 12px;
}

.left-content {
  width: 20%;
  float: left;
}

/*left  right content css */
.right-content {
  display: inline-block;
}

.left-content a {
  margin-bottom: 1.6rem;
  color: var(--primary) !important;
  position: relative;
  box-shadow: none;
  outline: none;
}

.left-content {
  display: flex;
  flex-direction: column;
}

.left-content a:before {
  content: " ";
  display: block;
  width: 100%;
  height: 1px;
  background-image: url("dashed-ov.svg");
  position: absolute;
  bottom: 0;
  transition: 0.2s;
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: scaleX(0);
}

.left-content a {
  text-decoration: none;
  display: block;
  width: max-content;
}

.right-content {
  display: inline-block;
  /* cccc width: calc(100% - 17%); */
}

.left-content a:hover:before,
.left-content a.active:before {
  transform: scaleX(100%);
  transform-origin: bottom left;
}

.left-content a:empty {
  display: none;
}

.left-content a.active {
  font-weight: 500;
}

.content-container--full-width {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

/*cccccc*/
.collapsible-content .accordion {
  border: 0;
  position: relative;
}

.collapsible-content .right-content details:after {
  content: " ";
  display: block;
  width: 100%;
  height: 1px;
  background-image: url("dashed.svg");
  opacity: 0.3;
}

.collapsible-content .right-content details[open]:after,
.collapsible-content .right-content details:hover:after {
  width: 100%;
  opacity: 1;
}

/* .collapsible-content .right-content details:after {
  content: ' ';
  display: block;
  width: 100%;
  height: 1px;
  background-image: url("dashed.svg");
  opacity: 0.3;
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(.19,1,.22,1);
  transform: scaleX(1);
}

.collapsible-content .right-content details[open]:after, .collapsible-content .right-content details:hover:after {

    transform: scaleX(00%);
  transform-origin: bottom Left;
}

.collapsible-content .right-content details:before {
  content: ' ';
  display: block;
  width: 100%;
  height: 1px;
  background-image: url(dashed.svg);
  opacity: 0.3;
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(.19,1,.22,1);
  transform: scaleX(0);
  bottom: 0;
  position: absolute;
}

.collapsible-content .right-content details[open]:before, .collapsible-content .right-content details:hover:before {
opacity:1;
    transform: scaleX(100%);
  transform-origin: bottom Left;
} */
/* ccc */
.related-designer-section {
  padding-left: 0 !important;
}

.right-content summary .icon-caret {
  color: var(--primary) !important;
  top: calc(50% - 0.5rem);
}

.right-content .accordion__title {
  font-weight: 500;
  font-size: 14px;
  color: var(--primary) !important;
  text-decoration: none !important;
  line-height: 20px;
}

.right-content .accordion summary {
  padding: 2rem 0;
}

.collapsible-none-layout .accordion+.accordion {
  margin-top: 15px;
}

.collapsible-content summary:hover {
  background: transparent !important;
}

.right-content .accordion__content {
  padding-bottom: 2rem;
  padding-left: 0;
}

.right-content summary .icon-caret {
  height: 0.8rem;
  right: 0;
}

.accordion summary {
  outline: none;
  box-shadow: none;
}

.field:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-image: url("dashed.svg");
  position: absolute;
  bottom: 0;
  transition: 0.3s;
  z-index: 1;
  right: 0;
  border: 0 !important;
  top: unset !important;
  outline: none !important;
  box-shadow: none !important;
  opacity: 0.2;
}

.field:hover.field:after {
  opacity: 1;
}

.field__input,
.select__select,
.customer .field input,
.customer select {
  padding-left: 0 !important;
}

.field__label,
.customer .field label {
  display: none;
}

.field__input::placeholder,
.customer .field input::placeholder {
  opacity: 1;
  font-size: 14px !important;
  color: #999999 !important;
}

.field__input:focus,
.field__input:not(:placeholder-shown),
.field__input:-webkit-fill,
.customer .field input:focus,
.customer .field input:not(:placeholder-shown),
.customer .field input:-webkit-autofill {
  box-shadow: none;
  padding: 1.5rem 0 !important;
}

.right-content .contact__fields {
  grid-template-columns: repeat(1, 1fr);
}

.right-content .field__label {
  display: inline-block;
  order: 1;
  top: 0;
  position: relative;
  left: unset;
  text-align: left;
  width: 100%;
}

.contact .field {
  display: block;
}

.right-content .field__label {
  font-size: 12px;
  font-weight: 500 !important;
}

.contact__button {
  margin: 0 auto;
  text-align: center;
}

.content-description p {
  color: rgba(var(--color-foreground), 1);
}

.section-designer_banner-padding .content-section-custom {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -20%);
  max-width: 388px;
  word-break: break-word;
}

.template-index .collection.section-designer_banner-padding {
  padding: 0 5rem;
  /* ccc */
  margin: 0 auto;
  max-width: 1440px;
}

.section-designer_banner-padding .collection__description {
  word-break: break-word;
}

.designer-image.for-desktop-only img {
  height: auto !important;
  width: 100%;
}

.cms-content-listing li+li {
  margin-top: 10px;
}

.right-content .tab__content.rte {
  padding-bottom: 5.2rem;
}

/*contact us pages*/
.banner--content-align-left.banner--desktop-transparent .banner__box,
.banner--content-align-right.banner--desktop-transparent .banner__box,
.banner--medium.banner--desktop-transparent .banner__box {
  padding-left: 0;
}

.right-content .title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

.right-content .field__label span {
  opacity: 0;
}

.right-content .content-description {
  margin-bottom: 24px;
}

.contact .field {
  margin-bottom: 2.4rem !important;
}

.contact__button button {
  min-width: 300px;
  font-size: 1.4rem !important;
}

.template-page-contact .banner__text,
.template-page-faq .banner__text,
.template-page-tab-page .banner__text {
  max-width: 370px;
}

/*footer */
.newsletter-form__button {
  width: auto !important;
  color: rgba(var(--color-foreground), 1);
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.4000000059604645px;
  text-align: left;
}

.social-icon-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 32px !important;
}

.footer-block__heading {
  font-weight: 500;
  letter-spacing: -0.6000000238418579px;
  font-size: 2rem !important;
  margin-bottom: 0.8rem !important;
  line-height: 1.3;
}

.footer-block__content {
  font-weight: 400;
  letter-spacing: 0px;
  color: #999999;
  font-size: 1.2rem;
}

.footer-block__details-content .list-menu__item--link,
.copyright__content a {
  color: rgba(var(--color-foreground), 1) !important;
  letter-spacing: 0;
}

.footer-block__newsletter {
  max-width: 392px;
}

.footer-block__newsletter .heading {
  color: #999999;
}

.footer .grid--4-col-tablet .grid__item:first-child {
  width: 50% !important;
}

.footer .grid--4-col-tablet .grid__item {
  width: max-content;
}

.footer__content-top .grid {
  display: flex;
  justify-content: space-between;
}

.newsletter-form {
  max-width: unset !important;
}

.newsletter-form__field-wrapper {
  max-width: unset;
}

.social-icon-section .heading,
.payment-text {
  color: #999;
  font-size: 12px;
  letter-spacing: 0;
}

.footer__localization:empty+.footer__column--info {
  align-items: flex-start !important;
}

.payment-text {
  margin-bottom: 8px;
}

.newsletter-form__field-wrapper .field__input {
  padding-right: 7rem !important;
}

.newsletter-form__button {
  height: auto;
  padding-top: 13px !important;
  padding-bottom: 13px !important;
}

.newsletter-form__field-wrapper .field__input {
  height: 5.2rem;
  /*  ccc padding: 1.3rem !important;  */
}

.footer-block__details-content .list-menu__item--link:hover,
.copyright__content a:hover,
.footer-block__details-content .list-menu__item--active {
  text-decoration: none !important;
  text-underline-offset: unset !important;
}

.newsletter-form__button:hover {
  color: var(--alternate) !important;
}

.newsletter-form__button {
  font-size: 14px;
  color: rgba(var(--color-foreground), 1);
  contain-intrinsic-block-size: auto 100px;
}

.footer__content-bottom {
  border: 0;
  padding-top: 0 !important;
}

.shopify-section-group-footer-group .multicolumn-list p {
  color: #999999;
  font-size: 1.2rem;
  line-height: 1.5 !important;
}

.shopify-section-group-footer-group .multicolumn-card__info {
  padding-bottom: 0 !important;
}

.footer__content-bottom-wrapper:before {
  content: " ";
  display: block;
  width: 100%;
  height: 1px;
  background-image: url("dashed.svg");
  position: absolute;
  transition: 0.3s;
  right: 0;
  border: 0 !important;
  top: unset !important;
  outline: none !important;
  box-shadow: none !important;
  opacity: 0.2;
}

.footer:before {
  content: " ";
  display: block;
  width: 100%;
  max-width: 1440px !important;
  height: 1px;
  background-image: url("dashed.svg");
  position: absolute;
  transition: 0.3s;
  left: 50%;
  transform: translateX(-50%);
  border: 0 !important;
  top: unset !important;
  outline: none !important;
  box-shadow: none !important;
  opacity: 0.2;
  padding: 0 5rem;
}

*/ .footer__column--info {
  align-items: flex-start !important;
}

.footer__localization {
  justify-content: end !important;
}

.footer__localization .disclosure {
  position: relative;
  margin-right: -8px;
}

.footer__localization .disclosure .localization-form__select {
  padding-left: 0;
}

.footer__localization .disclosure__list-wrapper {
  right: 0 !important;
}

.footer-collapse-icon {
  display: none;
}

.footer__localization .disclosure .localization-form__select {
  text-transform: uppercase;
}

.footer__localization h2 {
  opacity: 0;
}

.footer__localization .localization-form__select .icon-caret {
  top: calc(50% - 0.4rem);
}

.footer__localization h2 {
  margin: 0 !important;
  margin-top: 1.5rem !important;
}

.footer__localization .disclosure .localization-form__select {
  padding-left: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0;
  height: auto !important;
  min-height: unset !important;
}

.localization-form:only-child {
  margin-right: 0 !important;
}

.footer__localization .disclosure__list-wrapper {
  right: 0px !important;
}

.payment_logo_image {
  line-height: 1;
}

.footer__localization .disclosure .localization-form__select {
  margin-top: 12px;
}

.footer__localization .disclosure__link {
  text-transform: uppercase;
}

.grecaptcha-badge {
  z-index: 1;
  bottom: 100px !important;
}

.policy-text {
  margin-top: 16px;
}

.footer__content-bottom-wrapper {
  position: relative !important;
}

.footer,
.footer__content-bottom {
  border: 0 !important;
}

.footer__content-top .grid .grid__item {
  flex-grow: unset;
}

.footer__payment {
  margin-top: 1.6rem;
}

.footer__column--info {
  margin-top: 5.2rem !important;
  margin-bottom: 5.2rem !important;
}

.footer {
  padding-bottom: 0 !important;
}

.list-social__link {
  width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  display: flex;
  justify-content: center;
}

.list-social {
  gap: 5px;
}

.footer__localization:empty+.footer__column--info {
  padding-top: 5rem !important;
}

.for-mobile-only {
  display: none !important;
}

.shopify-section-group-footer-group .media>img {
  object-fit: contain;
}

.shopify-section-group-footer-group .media--square {
  padding-bottom: 32px;
}

.shopify-section-group-footer-group .multicolumn-list li:not(:last-child) {
  border-right: 1px solid #eaeaea;
}

.shopify-section-group-footer-group .multicolumn-card__info> :nth-child(2) {
  text-wrap: balance;
  font-size: 14px;
  letter-spacing: 0px;
  text-align: center;
  margin: 0 auto;
  margin-top: 11px;
}

.shopify-section-group-footer-group .multicolumn-list h3 {
  font-size: 14px;
}

.shopify-section-group-footer-group .multicolumn-card__image-wrapper.multicolumn-card__image-wrapper--full-width {
  line-height: 1;
}

.shopify-section-group-footer-group .multicolumn-card__info {
  padding-top: 8px !important;
}

.footer-block__details-content .list-menu__item--link {
  font-size: 12px !important;
}

.footer-block__details-content .list-menu__item--link {
  font-size: 12px !important;
}

.footer-block__details-content .disclosure {
  margin-right: -6px;
}

.footer-block__details-content .list-menu__item--active:hover {
  text-decoration-thickness: 0.2rem;
}

.shopify-section-group-footer-group.section,
.footer:before {
  display: none;
}

.template-customers-register .footer:before,
.template-customers-register .shopify-section-group-footer-group.section,
.template-customers-login .footer:before,
.template-customers-login .shopify-section-group-footer-group.section,
.template-article .shopify-section-group-footer-group.section,
.template-article .footer:before,
.template-article .shopify-section-group-footer-group.section,
.template-article .footer:before,
.template-collection .shopify-section-group-footer-group.section,
.template-collection .footer:before,
.template-blog-designers .shopify-section-group-footer-group.section,
.template-blog-designers .footer:before,
.template-blog-fabs .shopify-section-group-footer-group.section,
.template-blog-fabs .footer:before,
.template-product .shopify-section-group-footer-group.section,
.template-product .footer:before,
.template-index .shopify-section-group-footer-group.section,
.template-index .footer:before,
.template-page-clothing-care-tips .shopify-section-group-footer-group.section,
.template-page-clothing-care-tips .footer:before {
  display: block;
}

a.link.link--text.list-menu__item.list-menu__item--link:before {
  content: '';
  transform-origin: left;
  background-image: url(dashed-ov.svg);
  pointer-events: none;
  height: 1px;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  position: absolute;
  inset-block-end: 0;
  transform: scaleX(0);
  width: 100%;
  transform-origin: bottom right;
  bottom: 4px;
}

.footer-block__details-content .list-menu__item--link:hover:before,
.copyright__content a:hover,
.footer-block__details-content .list-menu__item--active:before {
  transform: scaleX(1) !important;
  transform-origin: bottom left !important;
}

.footer-block__details-content .list-menu__item--link {
  position: relative;
}

/*first home slider */
.home-slideshow-json-section .banner__media.media:before,
.home-slideshow-json-section .banner--adapt_image:before {
  padding-bottom: 41%;
  content: "";
  display: block;
}

.home-slideshow-json-section .slider__slide {
  min-height: unset !important;
}

.home-slideshow-json-section .slider.slider--everywhere .slider__slide {
  overflow: hidden !important;
}

.home-slideshow-json-section .banner__media::after {
  opacity: 0.2;
}

.home-slideshow-json-section .slider-counter__link--dots .dot {
  width: 7px !important;
  height: 7px !important;
}

.home-slideshow-json-section .slider-counter__link {
  padding: 0.5rem !important;
}

.home-slideshow-json-section .slideshow__text {
  color: #ffff !important;
}

.home-slideshow-json-section .slideshow__controls,
.cst-dots .slideshow__controls {
  border: 0 !important;
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.home-slideshow-json-section .banner__box {
  padding-left: 0;
}

.home-slideshow-json-section .slideshow__controls .slider-button,
.cst-dots .slideshow__controls .slider-button {
  display: none;
}

.home-collection-products-with-banner-json-section .banner a {
  text-decoration: none;
  display: flex;
  width: 100%;
}

/* .home-slideshow-json-section  .slider__slide { min-height: 72rem; } */
.home-collection-products-with-banner-json-section .banner__media:after {
  opacity: 0.2;
}

section.home-slideshow-json-section .banner__media:after {
  opacity: 0
    /* ccc .3 */
    !important;
}

.home-collection-products-json-section,
.home-collection-products-with-banner-json-section,
.section-designer_banner,
.home-gab-moment-json-section.section-fabs-moment {
  padding: 5.2rem 0;
}

.collection__description {
  color: #999999;
  padding-top: 1.6rem;
  line-height: 1.5;
}

.home-collection-products-json-section .grid,
.home-collection-products-with-banner-json-section .grid,
.template-index .product-grid,
.template-cart .product-grid {
  gap: 32px;
}

.template-search .product-grid {
  gap: 1.6rem;
}

.home-collection-products-json-section .grid--4-col-desktop .grid__item,
.home-collection-products-with-banner-json-section .grid__item,
.template-index .product-grid .grid__item,
.template-cart .product-grid .grid__item {
  width: calc(25% - 32px * 3 / 4);
  max-width: calc(25% - 32px * 3 / 4);
}

.template-search .product-grid .grid__item {
  width: calc(25% - 32px * 3 / 4);
}

.section-designer_banner {
  text-align: center;
}

.designer-image img {
  width: auto;
  max-width: 100%;
}

.home-designer-list-json-section {
  padding-top: 5.2rem;
  padding-bottom: 5.2rem;
}

.home-collection-products-with-banner-json-section .banner--adapt {
  min-height: 45rem;
  aspect-ratio: 16 / 9 !important;
}

.home-slideshow-json-section .slider-counter__link--dots .dot,
.cst-dots .slider-counter__link--dots .dot {
  background: #fff !important;
  opacity: 0.3;
  border: 0 !important;
}

.home-slideshow-json-section .link.slider-counter__link--active .dot,
.cst-dots .link.slider-counter__link--active .dot {
  opacity: 1 !important;
}

.section-designer_banner .collection__description {
  color: var(--primary);
  margin: 0 auto;
  max-width: 30rem !important;
  line-height: 1.5;
  padding-top: 0.8rem;
}

.section-designer_banner .collection__view-all a {
  color: var(--primary);
}

.img-holder {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-bottom: 100%;
  margin: 0px auto 0px;
}

.img-holder figure {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
  margin: 0px;
  text-align: center;
  padding: 0px;
}

.img-holder figure img {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  z-index: 1;
  transition: all 0.6s ease;
  object-fit: scale-down;
  object-position: 50% 50%;
}

.section-designer_list a {
  text-decoration: none;
}

.home-collection-products-with-banner-json-section slider-component {
  margin-top: 32px !important;
}

.section-designer_banner .collection__view-all a:hover {
  text-decoration-color: var(--alternate);
}

.home-collection-products-with-banner-json-section .banner--desktop-transparent .banner__box {
  padding-left: 0;
}

div#main-Slider-designer_list {
  margin-bottom: 32px !important;
}

div#main-Slider-designer_list .carousel-cell .img-holder {
  padding-bottom: 26% !important;
  background: #f8f4f47d;
}

div#main-Slider-designer_list .carousel-cell .img-holder img {
  object-fit: scale-down !important;
}

.color-count {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  color: #999999;
  margin-top: 4px;
}

.collection__view-all a:not(.link) {
  margin-top: 32px !important;
}

.collection.section-desktop-products_topicCollection-padding .banner__media:after {
  opacity: 0.2;
}

.first-video {
  position: relative;
  padding-bottom: 34.38%;
  /* 16:9 */
  height: 0;
  width: 100%;
}

.first-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*product list */
.product-card-wrapper .card--standard>.card__content .card__information .designer-name {
  color: var(--primary) !important;
  line-height: 18px !important;
  margin-bottom: 4px !important;
}

.product-card-wrapper .card__heading.h5 a {
  font-weight: normal !important;
}

.product-card-wrapper.underline-links-hover:hover a {
  text-decoration: none;
}

.active-facets__button--light .active-facets__button-inner {
  border: 0 !important;
  background: transparent !important;
  color: var(--primary) !important;
}

.facets__summary {
  line-height: 1;
  letter-spacing: 0rem;
}

.facets__summary span {
  line-height: 20px !important;
  padding: 1.6rem 0 !important;
  display: block;
}

.facets-vertical .facets__summary {
  padding-top: 1.6rem !important;
  padding-bottom: 1.6rem !important;
}

.product-card-wrapper .card__heading.h5 {
  font-size: 14px;
  letter-spacing: 0px;
  line-height: 22px;
}

.product-card-wrapper .price {
  font-size: 14px !important;
}

.cst-dots .slider-counter__link--dots .dot {
  min-height: 0.6rem !important;
  min-width: 0.6rem !important;
  height: 0.6rem !important;
  width: 0.6rem !important;
  scale: 1 !important;
}

.cst-dots .slider-counter__link {
  padding-left: 0 !important;
}

.product-card-wrapper .card__inner {
  --ratio-percent: 150.00000000000003% !important;
}

.template-collection .cst-dots .banner__text.rte p {
  color: rgba(var(--color-foreground), 1);
  font-size: 18px !important;
  line-height: 1.5;
}

.facets__disclosure-vertical {
  border-top: 0 !important;
  position: relative;
}

.facets-vertical .facets__summary:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-image: url("dashed.svg");
  position: absolute;
  transition: 0.3s;
  right: 0;
  border: 0 !important;
  top: unset !important;
  outline: none !important;
  box-shadow: none !important;
  opacity: 0.2;
}

.product-count__text {
  color: #999999 !important;
}

.facets__summary:hover .facets__summary-label {
  text-decoration: none !important;
}

.facets-vertical-form {
  justify-content: space-between !important;
}

.product-count-vertical {
  margin-left: 0 !important;
}

.facets__heading--vertical {
  font-size: var(--size-18) !important;
  font-weight: 500 !important;
  letter-spacing: 0px !important;
}

.facets__summary span {
  font-weight: 500 !important;
  color: rgba(var(--color-foreground), 1);
}

.facet-checkbox input[type="checkbox"] {
  width: 2.4rem;
  height: 2.4rem;
}

.facet-checkbox>svg {
  width: 20px !important;
  height: 20px !important;
  border-radius: 100px !important;
}

.facet-checkbox {
  color: var(--primary) !important;
  align-items: center;
}

.facet-checkbox>svg {
  background: transparent !important;
}

.facet-checkbox .icon-checkmark {
  top: 10px !important;
  left: 0px !important;
}

.facets__selected.no-js-hidden {
  display: none !important;
}

.filter-remove-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding-top: 1.6rem;
}

.filter-remove-section:empty {
  display: none;
}

.facets-vertical .active-facets__button {
  margin-bottom: 0 !important;
  margin-right: 0 !important;
}

.facets-vertical .active-facets__button-wrapper {
  margin: 0 !important;
  padding: 0 !important;
}

span.active-facets__button-inner {
  border-radius: 2px !important;
  letter-spacing: 0;
  padding: 0.8rem 1.5rem !important;
  align-items: center !important;
}

.active-facets__button--light:hover .active-facets__button-inner {
  box-shadow: 0 0 0 0.1rem rgb(var(--color-foreground)) !important;
}

.active-facets__button svg {
  color: var(--primary) !important;
  width: 12px !important;
  height: 12px !important;
  margin-top: -1px !important;
}

a.active-facets__button-remove svg {
  align-self: center;
  flex-shrink: 0;
  margin-left: 0.6rem;
  margin-right: -0.2rem;
  pointer-events: none;
  width: 1.2rem;
}

.facet-filters__field .select,
.facet-filters__field .select__select,
.mobile-facets__sort .select__select {
  color: var(--primary) !important;
}

.facet-filters__label {
  color: rgba(var(--color-foreground), 1) !important;
  font-size: 16px !important;
}

a.active-facets__button-remove {
  color: #999999;
}

a.active-facets__button-remove:hover {
  color: rgba(var(--color-foreground), 1) !important;
}

ul#product-grid {
  --grid-desktop-horizontal-spacing: 1.6rem;
  row-gap: 3.2rem;
}

.facets-vertical .facets__price input {
  -webkit-appearance: none !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}

.facet-filters__field .select__select,
.mobile-facets__sort .select__select {
  box-shadow: none !important;
  outline: none !important;
}

.product-card-wrapper .card--standard>.card__content .card__information {
  padding-bottom: 0 !important;
  padding-top: 1.2rem !important;
}

.customer>h1,
.customer__title {
  margin-bottom: 1.6rem;
}

.facets-vertical .facets__summary[aria-expanded="true"]:after {
  opacity: 1;
}

.active-facets__button--light .active-facets__button-inner {
  padding: 2px 8px !important;
  line-height: 20px;
}

.facets-vertical .facets__summary {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.facets__disclosure-vertical+.facets__disclosure-vertical {
  padding-top: 16px !important;
}

.facets__display-vertical {
  margin-top: 16px !important;
}

.collection-hero__title {
  margin: 2.4rem 0 0 !important;
  font-size: 28px !important;
}

/*details page modal design */
.cst-modal-header .product-popup-modal__toggle .icon {
  width: 2.4rem !important;
}

.cst-modal .table-content {
  overflow: auto;
}

.cst-modal .product-popup-modal__content {
  color: var(--primary);
}

.cst-modal .product-popup-modal__toggle {
  border: 0 !important;
  padding: 0 !important;
}

.cst-modal .product-popup-modal__content {
  display: flex;
  flex-direction: column;
  padding: 0 3.2rem;
}

.cst-modal .product-popup-modal__content-info {
  flex: 1;
  overflow-y: scroll;
}

.cst-modal .product-popup-modal__content-info .content-1 {
  padding: 3.2rem 0;
}

@media screen and (max-width: 767px) {
  .cst-modal .product-popup-modal__content-info .content-1 {
    padding: 1.6rem 0;
  }
}

.cst-modal .product-popup-modal__content-info .content-1 .repeated {
  padding-top: 3.2rem;
}

.cst-modal .product-popup-modal__content-info .content-1 .repeated:first-child {
  padding-top: 0;
}

.cst-modal .product-popup-modal__content-info .content-2 {
  padding: 3.2rem 0;
}

@media screen and (max-width: 767px) {
  .cst-modal .product-popup-modal__content-info .content-2 {
    padding: 1.6rem 0;
  }
}

.cst-modal .product-popup-modal__content-info .content-2 .title_desc {
  font-size: 16px;
  font-weight: 500;
}

.cst-modal .product-popup-modal__content-info .content-2 .images-section {
  padding-top: 3.2rem;
}

@media screen and (max-width: 767px) {
  .cst-modal .product-popup-modal__content-info .content-2 .images-section {
    padding-top: 1.6rem;
  }
}

.cst-modal .product-model-info {
  padding: 3.2rem 0;
  display: flex;
  flex-direction: row;
  gap: 16px;
}

@media screen and (max-width: 767px) {
  .cst-modal .product-model-info {
    padding: 2.4rem 0;
  }
}

.cst-modal .product-size-guide-tab .tabs {
  padding: 1.6rem 0;
}

.cst-modal .product-size-guide-tab .tab-content .product-size-chart {
  padding: 3.2rem 0;
}

@media screen and (max-width: 767px) {
  .cst-modal .product-size-guide-tab .tab-content .product-size-chart {
    padding: 2.4rem 0;
  }
}

.cst-modal .product-size-guide-tab .tab-content .product-size-chart .inch-cm-section {
  margin-top: 1.6rem;
}

@media screen and (max-width: 767px) {
  .cst-modal .product-size-guide-tab .tab-content .product-size-chart .inch-cm-section {
    margin-top: 1.6rem;
  }
}

.tab-content .content-section .product-measurment-section {
  padding: 3.2rem 0;
}

@media screen and (max-width: 767px) {
  .tab-content .content-section .product-measurment-section {
    padding: 2.4rem 0;
  }
}

.tab-content .content-section .product-measurment-section .heading h2 {
  margin: 0;
  padding-bottom: 3.2rem;
}

@media screen and (max-width: 767px) {
  .tab-content .content-section .product-measurment-section .heading h2 {
    padding-bottom: 2.4rem;
  }
}

.cst-modal .row-content .content {
  display: flex;
  background: #edf0f0;
  gap: 7px;
  width: 100%;
  justify-content: space-between;
}

.cst-modal .row-content {
  display: flex;
  flex-direction: row;
  gap: 9px;
}

.cst-modal .table-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.cst-modal .row-content .content .value {
  padding: 10px 20px;
  text-align: center;
  min-width: 116px;
  line-height: 16px;
}

.cst-modal .value.heading {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0px;
}

.cst-modal .value.selected {
  background: var(--secondary);
  color: #fff;
}

.cst-modal .washList-section {
  display: grid;
  column-count: 3;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  text-align: center;
  padding-top: 3.2rem;
}

.cst-modal .washList-section .washList-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .cst-modal .washList-section {
    padding-top: 2.4rem;
  }
}

.cst-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.2rem 0;
}

.cst-modal-header .h2 {
  font-size: 18px;
  margin: 0;
}

.cst-modal-header .icon {
  color: rgba(var(--color-foreground));
}

.cst-modal .product-fabric-bg-section .icon_section {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  line-height: 1;
}

.designer-product-count+.designer-description {
  margin-top: 8px;
}

.washList-conten img {
  height: auto !important;
  padding: 8px;
}

.cst-modal .product-fabric-bg-section:before {
  height: 100%;
  width: 100%;
  content: " ";
  position: absolute;
  z-index: 1;
  display: block;
  background: #000000;
  left: 0;
  top: 0;
  opacity: 0.4;
}

.cst-modal .product-fabric-bg-section {
  position: relative;
}

.product-fabric-bg-section .content,
.icon_section,
.cst-modal .icon-list {
  z-index: 2;
  position: relative;
}

.product-fabric-bg-section .icons-content .heading {
  font-size: 12px;
  line-height: 18px !important;
}

.grid-content a:hover {
  text-decoration-color: var(--alternate) !important;
}

.product-fabric-bg-section .icons-content .image img {
  height: auto !important;
  padding: 8px;
}

.washList-content img {
  height: auto !important;
  max-width: 60px !important;
}

hr.dashed {
  display: block;
  width: 100%;
  height: 1px;
  background-image: url("dashed.svg");
  transition: 0.3s;
  z-index: 1;
  top: unset !important;
  outline: none !important;
  box-shadow: none !important;
  opacity: 0.2;
  margin: 0;
  margin-top: 3.2rem;
  background-color: transparent !important;
}

.cst-modal .product-fabric-bg-section-wrapper {
  padding: 3.2rem 0;
}

@media screen and (max-width: 767px) {
  .cst-modal .product-fabric-bg-section-wrapper {
    padding: 2.4rem 0;
  }
}

.cst-modal .product-fabric-bg-section {
  text-align: center;
  color: #fff;
  padding: 3.2rem;
  background-size: cover !important;
  background-position: center !important;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cst-modal .product-fabric-info {
  padding: 3.2rem 0;
}

@media screen and (max-width: 767px) {
  .cst-modal .product-fabric-info {
    padding: 2.4rem 0;
  }
}

.cst-modal .product-fabric-info .title_desc {
  font-weight: 500;
  font-size: 16px;
}

.cst-modal .cst-content-update .heading {
  padding-top: 1.6rem;
}

.cst-modal .product-fabric-info .content {
  padding-top: 0.8rem;
}

.cst-modal .product-specification-info {
  padding: 3.2rem 0;
}

@media screen and (max-width: 767px) {
  .cst-modal .product-specification-info {
    padding: 2.4rem 0;
  }
}

.cst-modal .product-specification-info .title_desc {
  font-weight: 500;
  font-size: 16px;
}

.cst-modal .product-specification-info .product-specification-info-desc {
  padding-top: 1.6rem;
}

@media screen and (max-width: 767px) {
  .cst-modal .product-specification-info .product-specification-info-desc {
    padding-top: 0.8rem;
  }
}

.cst-modal .product-specification-info .table-content {
  padding-top: 3.2rem;
}

@media screen and (max-width: 767px) {
  .cst-modal .product-specification-info .table-content {
    padding-top: 1.6rem;
  }
}

.cst-modal .care-washing-guide {
  padding: 3.2rem 0;
}

@media screen and (max-width: 767px) {
  .cst-modal .care-washing-guide {
    padding: 2.4rem 0;
  }
}

.cst-modal .care-washing-guide .title_desc {
  font-weight: 500;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .cst-modal .care-washing-guide .washList-section {
    padding-top: 1.6rem;
  }
}

.cst-modal .care-washing-guide .tips-care {
  position: relative;
  padding-top: 3.2rem;
}

.cst-modal .care-washing-guide .tips-care .img-holder {
  height: 0;
}

.washList-content .heading {
  font-size: 12px;
  line-height: 18px;
}

.cst-modal .icon-list {
  justify-content: center;
  margin-top: 16px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.product-fabric-bg-section .content {
  font-size: 12px;
  line-height: 18px;
}

.cst-modal .product-model-info .image-section img {
  width: 116px !important;
  height: 156px !important;
  object-fit: cover;
}

ul.modeldesc-content li {
  margin-bottom: 8px;
  line-height: 18px;
}

.product-model-info .title_desc {
  margin-top: 0 !important;
}

ul.modeldesc-content {
  padding-left: 20px;
}

.modeldesc-content li,
ul.content li {
  position: relative;
}

.modeldesc-content li:before,
ul.content li:before {
  position: absolute;
  content: " ";
  background: var(--primary) !important;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  left: -1.5rem;
  top: 0.7rem;
}

.modeldesc-content,
ul.content {
  list-style: none;
}

.product-size-guide-tab .tabs {
  display: flex;
  align-items: center;
  gap: 100px;
  justify-content: center;
}

.product-size-guide-tab .tabs a {
  display: inline-flex;
  font-weight: 500;
  letter-spacing: 0px;
  text-decoration: none;
  color: var(--primary);
  position: relative;
}

.product-size-guide-tab .tabs a:before,
.predictive-search__item span:before,
.predictive-search__item--link-with-thumbnail .predictive-search__item-content--centered p:before {
  content: '';
  transform-origin: right;
  background-image: url(dashed-ov.svg);
  pointer-events: none;
  height: 1px;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  position: absolute;
  inset-block-end: 0;
  transform: scaleX(0);
  width: 100%;
}

.predictive-search__item span {
  position: relative;
  text-decoration: none !important;
}

.predictive-search__item:hover {
  color: unset !important;
  background: transparent !important;
}

.predictive-search__item--link-with-thumbnail .predictive-search__item-content--centered p {
  max-width: max-content;
  display: inline-block;
  position: relative;
}

.predictive-search__list-item[aria-selected="true"] .predictive-search__item-heading,
.predictive-search__list-item:hover .predictive-search__item-heading {
  text-decoration: none !important;
}

.product-size-guide-tab .tabs a:hover:before,
.product-size-guide-tab .tabs a.active:before,
.predictive-search__item:hover span:before,
.predictive-search__list-item:hover .predictive-search__item-content--centered p:before {
  transform: scaleX(1) !important;
  transform-origin: bottom left !important;
}

.cst-modal .row-content .content .value {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-popup-modal__button:hover {
  text-decoration-thickness: inherit !important;
  text-decoration-color: var(--alternate) !important;
}

.product-popup-modal__button:hover:before {
  transform: scaleX(1) !important;
  transform-origin: bottom left !important;
}

.product-popup-modal__button {
  position: relative;
}

.product-popup-modal__button {
  text-decoration: none;
  padding-right: 0 !important;
}

.product-popup-modal__button:hover:after {
  transform: scaleX(0) !important;
  transform-origin: bottom right !important;
}

.product-popup-modal__button:hover {
  text-decoration: unset !important;
}

.size-chart-container-des {
  margin-top: 1.6rem;
}

.size-chart-container-des p {
  margin-bottom: .8rem;
}

.size-chart-container-des p span {
  font-weight: 500;
}

.inch-cm-section {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  align-content: center;
  width: 80px;
  margin-left: auto;
  height: 37px;
  justify-content: center;
}

.inch-cm-section a {
  text-decoration: none;
  color: #999999;
  font-size: 1.2rem;
  line-height: 150%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-out;
  text-decoration: underline;
}

.inch-cm-section a.active {
  color: #031C24;
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
}

.product-size-chart .content .value,
.body-size-chart .content .value {
  min-width: 116px !important;
}

.product-size-chart .row-content:nth-of-type(odd) .content,
.body-size-chart .row-content:nth-of-type(odd) .content {
  background: #edf0f0 !important;
}

.product-size-chart .row-content:nth-of-type(even) .content,
.body-size-chart .row-content:nth-of-type(even) .content {
  background: #f6f6f6 !important;
}

.product-size-chart .content,
.body-size-chart .content {
  width: auto !important;
}

.product-size-chart .row-content:last-child,
.body-size-chart .row-content:last-child {
  margin-bottom: 8px;
}

.product-size-chart .table-content,
.body-size-chart .table-content {
  gap: 0 !important;
  overflow: auto;
}

.product-size-chart .content .value,
.body-size-chart .content .value {
  padding: 10px 10px !important;
}

body.model-open {
  overflow: hidden;
}

.content-section.measurment-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
}

.product-measurment-section .title_desc {
  margin: 0;
  margin-bottom: 4px;
  font-size: 12px;
}

.product-measurment-section .measurment-item {
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 16px;
}

.product-measurment-section h2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0px;
}

.product-measurment-section .content-section.measurment-details .image-section {
  width: 165px !important;
}

.product-measurment-section .content-list {
  width: calc(100% - 175px);
}

.product-measurment-section .content-section.measurment-details .image-section img {
  width: 160px !important;
  /* ccc height: 240px !important; */
}

.cst-dots .slideshow__text.banner__box {
  padding-left: 0 !important;
}

.facets__summary .icon-caret {
  height: 10px !important;
  width: 16px !important;
  top: calc(50% - 0.6rem) !important;
}

.facet-checkbox>svg {
  margin-top: -2px !important;
}

.facet-filters__field .select__select,
.mobile-facets__sort .select__select {
  padding-left: 5px !important;
}

div#sort-dropdown-options {
  list-style: none;
  padding: 0px 0px;
  position: absolute;
  right: 0px;
  top: 32px;
  width: 200px;
  background: #fff;
  border: 0;
  box-shadow: 0px 8px 16px 0px #00000009;
  z-index: 1;
}

#my_sort_label {
  position: relative !important;
  margin: 0 !important;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  cursor: pointer;
}

div#sort-dropdown-options a {
  width: 100%;
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  text-align: left;
  text-decoration: none;
  padding: 8px 16px;
  color: var(--primary);
}

div#sort-dropdown-options a:hover,
div#sort-dropdown-options a.link-dropdown__link--active {
  background: #edf0f0 !important;
}

.facet-filters.sorting.caption {
  padding-left: 0 !important;
  margin-right: 0 !important;
}

#my_sort_label svg {
  align-self: center;
  flex-shrink: 0;
  margin-left: 0.6rem;
  margin-right: -0.2rem;
  pointer-events: none;
  width: 1.2rem;
}

.facet-filters.sorting.caption .facet-filters__field {
  cursor: pointer;
}

.header--has-social .menu-drawer__utility-links {
  padding: 2rem 1.6rem;
}

/*details page */
.product__accordion.accordion summary[aria-expanded="true"]:after {
  opacity: 1;
  transform: scaleY(0.8);
}

.page-width-md {
  max-width: 1440px !important;
}

.product-media-container.constrain-height.media-fit-contain {
  width: 100% !important;
}

.product__info-container .product-form .product-form__buttons {
  max-width: unset;
}

.product-media-container.constrain-height.media-fit-contain {
  width: 100%;
}

.product__title h1 {
  font-size: 24px;
  letter-spacing: -0.6px;
}

.color-swatch-section .swatch-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.6em 0.8em;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  background: var(--account-bg-overlay-color);
  z-index: 0;
  border-radius: 5px;
  scale: 0;
  transform-origin: 0 0;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 13px;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  color: #ffff;
  width: max-content;
  line-height: 1 !important;
  z-index: 1;
}

.color-swatch-section .swatch a:hover .swatch-label {
  top: -35px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  scale: 1;
  animation: shake 0.5s ease-in-out both;
}

.color-swatch-section .swatch-label::after {
  position: absolute;
  content: "2";
  height: 0.6em;
  width: 0.6em;
  bottom: -0.2em;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  background: var(--account-bg-overlay-color);
}

@keyframes shake {
  0% {
    rotate: 0;
  }

  25% {
    rotate: 7deg;
  }

  50% {
    rotate: -7deg;
  }

  75% {
    rotate: 1deg;
  }

  100% {
    rotate: 0;
  }
}

.color-swatch-section .swatch img {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.5rem;
  margin: -0.1rem;
}

.swatch {
  position: relative;
  line-height: 1;
}

.color-swatch-section .swatch-label::after {
  position: absolute;
  content: "";
  height: 0.6em;
  width: 0.6em;
  bottom: -0.2em;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  background: var(--account-bg-overlay-color);
}

.product-popup-modal__button {
  min-height: unset !important;
}

.color-swatch-section .label,
.product__info-wrapper .form__label {
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0px;
  color: rgba(var(--color-foreground), 1);
}

.color-swatch-section .swatch a {
  padding: 2px;
  border: 1px solid #fff;
  border-radius: 4px;
  transition: 0.2s;
  position: relative;
  display: inline-block;
  line-height: 0 !important;
}

.color-swatch-section .swatch a:hover,
.color-swatch-section .swatch.selected a {
  border-color: var(--primary) !important;
}

.product-form__input input[type="radio"]+label:hover,
.product-form__input input[type="radio"]:checked+label {
  border-color: rgb(var(--color-foreground)) !important;
  color: var(--primary) !important;
}

.template-product .product__info-container .price__container {
  margin-bottom: 0 !important;
}

.product__info-container .product-form .product-form__buttons button span,
.product__info-container .product-form .product-form__buttons button {
  text-transform: uppercase !important;
  font-size: 14px !important;
  letter-spacing: -0.4px !important;
  line-height: 1 !important;
}

.cst-modal-header .product-popup-modal__toggle .icon {
  padding: 4px;
}

.product__accordion.accordion {
  border: 0;
  display: inline-block;
  width: 100%;
}

.product__accordion .summary__title+.icon-caret {
  height: 10px !important;
  top: calc(50% - 0.5rem);
  right: 7px;
}

.product__accordion.accordion summary:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-image: url("dashed.svg");
  position: absolute;
  transition: 0.3s;
  right: 0;
  border: 0 !important;
  top: unset !important;
  outline: none !important;
  box-shadow: none !important;
  /* opacity: 0.2; */
  transform: scaleY(0.5);
  bottom: 0;
}

.product__accordion .accordion__content {
  margin-top: 1.6px !important;
  padding: 0;
  color: var(--primary);
  padding-left: 0px !important;
  margin-bottom: 0px !important;
}

.product__accordion summary {
  padding: 1.6rem 0 !important;
}

.product__accordion .accordion__title {
  font-size: 14px !important;
  letter-spacing: -0.4px;
  font-weight: 500;
}

.product__accordion .accordion__content ul.content li {
  padding-left: 0px;
  list-style-position: outside;
  margin-bottom: 8px;
}

.product__accordion .accordion__content .product-popup-modal__button {
  font-size: 14px !important;
  text-align: left;
  padding: 0 !important;
  line-height: 1.5;
}

.product__accordion .accordion__content .designer-section {
  display: flex;
  gap: 1.6rem;
}

.product__accordion .accordion__content .designer-image {
  width: 12rem;
  height: 18rem;
}

.product__accordion .accordion__content .designer-image img {
  width: 100%;
  height: 100%;
}

.fabricIcon-content .image {
  margin-bottom: 0rem;
}

.fabricIcon-content img {
  padding: 14px;
}

.product__accordion .designer-content .designer-name {
  font-size: 14px !important;
  font-weight: 500;
  letter-spacing: 0em;
  color: var(--primary) !important;
  margin-bottom: 8px !important;
  line-height: 1;
  padding-top: 0px;
}

.designer-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 1.2rem;
}

.designer-product-count a {
  color: #999999 !important;
  text-decoration: underline;
}

.designer-description div+div {
  margin-top: 3px;
}

.designer-address {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  align-content: center;
}

.designer-address svg {
  top: 0px;
  position: relative;
}

.product__accordion .accordion__content .designer-section {
  margin-top: 1.6rem;
}

.product__accordion .accordion__content .designer-content {
  line-height: 1;
}

.template-product .fabs-images {
  margin-top: 40px;
}

.cst-modal .image-with-text .grid__item .img-holder {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 0px !important;
  overflow: hidden;
  padding-bottom: 150%;
  margin: 0px auto 0px;
}

.cst-modal .grid--gapless.grid {
  column-gap: 32px;
  row-gap: 32px;
}

.cst-modal .image-with-text .grid__item {
  width: calc(50% - 32px);
  flex-grow: 1;
}

.cst-modal .image-with-text .grid__item .img-holder figure img {
  object-fit: cover;
  height: 100% !important;
}

.cst-modal .image-with-text__media {
  min-height: unset !important;
}

.cst-modal .image-with-text__content {
  padding: 0px !important;
}

.related-products__heading {
  text-transform: capitalize;
}

.product__accordion .summary__title+.icon-caret {
  color: var(--primary);
}

.cst-modal .repeated:nth-child(odd) .image-with-text__content {
  padding-right: 0 !important;
}

.cst-modal .repeated:nth-child(even) .image-with-text__content {
  padding-left: 0 !important;
}

.product-model-info .image-section img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.contentIcon-section {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(3, 2fr);
  grid-template-rows: auto;
  grid-column-gap: initial;
  color: var(--primary) !important;
  gap: 15px;
}

.contentIcon-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
}

.fabricIcon-section {
  display: grid;
  grid-template-columns: repeat(5, 2fr);
  grid-template-rows: auto;
  grid-column-gap: initial;
  grid-row-gap: 0px;
  color: var(--primary) !important;
  text-align: center;
  margin: 1.6rem 0 !important;
  position: relative;
}

.contentIcon-content .image {
  height: auto !important;
}

.fabricIcon-content img {
  width: auto !important;
}

.fabricIcon-content {
  font-size: 12px;
  line-height: 18px;
}

.product-fabric-info .content {
  color: #999999 !important;
  line-height: 18px;
}

.cst-modal .table-responsive table {
  box-shadow: none;
  border: 0 !important;
  width: 100% !important;
  display: table;
}

.cst-modal .table-responsive td.value.heading {
  border: 0;
  font-size: 14px;
}

.cst-modal .table-responsive table {
  max-width: unset;
}

.cst-modal .table-responsive table:not([class]) td,
.cst-modal table:not([class]) th {
  border: 0;
  width: 80px;
  font-size: 12px;
  min-width: 80px;
}

.cst-modal .row-content {
  display: table;
  width: 100%;
  text-align: left;
}

.cst-modal .table-responsive table:not([class]) td,
.cst-modal table:not([class]) th {
  text-align: center;
}

.cst-modal thead th {
  font-weight: normal;
  white-space: normal;
}

.cst-modal thead {
  background: #edf0f0;
}

.cst-modal .table-responsive tbody tr:nth-of-type(odd) {
  background-color: #f6f6f6;
}

.cst-modal tbody tr:nth-of-type(even) {
  background-color: #edf0f0;
}

.cst-modal thead th {
  font-weight: normal;
}

.cst-modal .table-content.table-responsive {
  display: block;
  width: 100%;
  overflow: auto;
}

.fabric.cst-modal .content-2 .images-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 30px;
}

.tips-care .img-holder {
  padding-bottom: 34%;
}

.tips-care .img-holder:before {
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  content: " ";
  z-index: 1;
  transition: all 0.2s linear;
  background-size: 100% 100%;
  background: #000;
  opacity: 0.5;
  position: absolute;
}

.grid-content {
  position: absolute;
  left: 0px;
  top: 10%;
  width: 100%;
  height: 100%;
  transition: all 0.2s linear;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffff;
  flex-direction: column;
}

.grid-content a {
  color: #fff;
}

.grid-content a:hover {
  text-decoration: none;
}

.tips-care h3.size-18 {
  color: #ffff;
  margin: 0 0 8px 0;
}

.fabric.cst-modal .content-2 .images-section img {
  height: auto !important;
}

.clothe-title {
  margin: 0;
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 18px;
  text-align: center;
  font-family: var(--font-body-family) !important;
  font-weight: 500;
  color: #ffff;
  z-index: 1;
}

.tips-care .img-holder img {
  object-fit: cover;
  object-position: 50% 50%;
}

.product-size-guide-tab {
  margin-bottom: 0 !important;
}

.cart-item__name:hover {
  text-decoration-thickness: unset;
  text-decoration-color: var(--alternate);
}

.product__accordion .accordion__content .designer-image a:before {
  width: 32px;
  height: 32px;
  background: rgb(3, 28, 36, 0.4);
  content: " ";
  display: flex;
  align-items: center;
  position: absolute;
  left: 25px;
  top: 25px;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 100px;
  background-image: url(video-new.svg);
  background-repeat: no-repeat !important;
  justify-content: center;
  background-position: 62% 50%;
  background-size: 11px;
}

.product__accordion .accordion__content .designer-image a {
  position: relative;
  height: 100%;
  display: block;
}

.product-preorder-text {
  color: #e88c73;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 !important;
  line-height: 1.4;
}

.variant-preorder-time {
  display: none;
  margin: 1.6rem 0 2.4rem;
  font-weight: 500;
}

.variant-preorder-time--show {
  display: block;
}

p.product-preorder-text {
  margin-top: 8px !important;
  margin-bottom: 0 !important;
}

.content-section .product-model-info {
  width: 100%;
}

.cst-modal .product-model-info .content-section {
  width: calc(100% - 124px);
}

.fabric.cst-modal .content-2 .images-section .img-holder {
  padding-bottom: 150%;
}

.fabric.cst-modal .content-2 .images-section+.images-section {
  margin-top: 30px;
}

.content .modeldesc-content:first-child {
  margin-top: 0;
}

.fabric.cst-modal .content-2 .images-section .img-holder img {
  object-fit: cover;
  height: auto !important;
}

.wk-text {
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
  text-decoration: underline;
}

.product__info-container .contentIcon-content img {
  width: 1.8rem;
  height: 1.8rem;
}


.product-form__input input[type="radio"]+label {
  padding: 1rem 1.6rem;
  border: 0.1rem solid #d8d8d8;
  color: #333;
  background: transparent;
  margin-right: 1.6rem;
  margin-bottom: 0.8rem;
  border-radius: var(--variant-pills-radius);
  display: inline-block;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  text-align: center;
  transition: border var(--duration-short) ease;
  cursor: pointer;
  position: relative;
}

.product-form-size-bag {
  display: flex;
  margin-bottom: 1.6rem;
}

.product-form-size-bag .product-form-size-bag-list {
  margin-right: 1rem;
  font-size: 1.2rem;
}

.product-form-size-bag .product-form-size-bag-list .product-form-size-bag-image {
  display: flex;
  width: 6rem;
  height: 6rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  border: 0.1rem solid transparent;
}

.product-form-size-bag-image.product-form-size-bag-image-mask img {
  opacity: 0.4;
  background: #FFF;
}

.product-form-size-bag .product-form-size-bag-list .product-form-size-bag-image img {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 0.4rem;
}

.product-form-size-bag .product-form-size-bag-list:hover .product-form-size-bag-image,
.product-form-size-bag .product-form-size-bag-list.product-form-size-bag-list-checked .product-form-size-bag-image {
  border-color: #031C24;
}

.shopify-payment-button__button--unbranded {
  min-height: 4.4rem !important;
}

button.shopify-payment-button__button--unbranded {
  line-height: unset !important;
  min-height: unset !important;
}

.product__info-container .product-form .product-form__buttons button {
  min-height: 4.4rem !important;
}

.product__accordion.accordion {
  margin: 0 !important;
  margin-bottom: 16px !important;
}

#Details-designer-accordion__main {
  padding-top: 1.6rem;
}

.product__info-container>.fabricIcon-section {
  padding-bottom: 24px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.product__accordion .accordion__content .designer-section {
  margin-bottom: 16px !important;
}

.product__accordion .accordion__content {
  padding: 0 !important;
  margin: 0 !important;
}

.product__accordion .accordion__content ul.content li:last-child {
  margin-bottom: 0 !important;
}

.product__accordion .accordion__content ul.content li {
  line-height: 20px;
}

.facet-checkbox {
  padding: 0.8rem 2rem 0.8rem 0 !important;
}

.facets-wrap-vertical {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.facets__item {
  margin-bottom: 8px;
}

.underlined-link:hover,
.customer a:hover,
.inline-richtext a:hover {
  text-decoration: none !important;
}

/*fabric content hover */
.fabricIcon-content .hover-content {
  visibility: hidden;
  width: 100%;
  background-color: #edf0f0;
  color: #031c24;
  border-radius: 0;
  padding: 11px;
  position: absolute;
  bottom: 10rem;
  opacity: 0;
  transition: opacity 0.3s;
  text-align: left;
  font-size: 14px;
  max-width: 100%;
  right: 50%;
  transform: translateX(50%);
}

.fabricIcon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.banner__box>*+.banner__text p {
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
}

/*product list */
button.js-load-more span:last-child {
  display: none;
}

button.js-load-more.loading.loading span:first-child {
  display: none;
}

button.js-load-more.loading.loading span:last-child {
  display: block;
  color: rgb(var(--color-button-text));
}

.card-information>*:not(.visually-hidden:first-child)+*:not(.rating):not(.card__information-volume-pricing-note) {
  margin-top: 0.4rem !important;
}

/*fabshome*/
.section-fabs-moment .img-holder figure img {
  object-fit: cover;
}

.fab-grid img {
  object-fit: cover;
}

.fab-grid {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: auto;
  margin-bottom: 0px;
}

.fab-grid li {
  --row-step: calc(12 * var(--n));
}

.fab-grid li:first-child,
.fab-grid li:nth-child(8),
.fab-grid li:nth-child(11) {
  grid-area: span 2 / span 2;
}

.section-fabs-moment-padding .img-holder {
  padding-bottom: 150%;
}

.fab-grid li .img-holder:before,
.fab-grid-details li .img-holder:before {
  position: absolute;
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all 0.2s linear;
  opacity: 0;
  background: rgb(3 28 36 / 45%);
  content: "Get the look";
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fab-grid li a:hover .img-holder:before,
.fab-grid-details li a:hover .img-holder:before {
  opacity: 1;
}

.fab-grid-details {
  margin-bottom: 15px !important;
}

.mega-menu__promo img {
  object-fit: cover;
}

/*fab list*/
.fabs-list-section .fab-grid {
  grid-template-columns: repeat(5, 1fr);
}

.fabs-list-section .img-holder figure img {
  object-fit: cover;
}

.fabs-list-section .img-holder {
  padding-bottom: 150%;
}

.fabs-section h2 {
  margin-bottom: 0;
}

.fabs-list-section .fab-grid {
  margin-bottom: 32px;
}

.template-blog-fabs .fabs-list-section {
  padding-bottom: 3.2rem;
}

.fab-grid li.desktop-large .img-holder {
  padding-bottom: 149.5%;
}

/*designer list */
.alphabet-tabs a.tab {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: left;
  text-decoration: none;
  color: #031c24;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: relative;
}

.alphabet-tabs {
  display: flex;
  justify-content: space-between;
}

.alphabet-tabs a.tab:before {
  content: " ";
  display: block;
  width: 100%;
  height: 1px;
  background-image: url("dashed-ov.svg");
  position: absolute;
  bottom: 0;
  transition: 0.2s;
  left: 0;
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: scaleX(0);
}

.alphabet-tabs a.active.tab:before,
.alphabet-tabs a:hover:before {
  transform: scaleX(100%);
  transform-origin: bottom left;
}

.letter-section {
  padding: 5.2rem 0;
  display: none;
}

.alphabet-tabs {
  padding: 3.2rem 0;
}

.letter-section h2 {
  margin-top: 0 !important;
  margin-bottom: 3.2rem !important;
}

.gruop-letter {
  display: flex;
  gap: 3.2rem;
  flex-wrap: wrap;
}

.gruop-letter .designer-info {
  max-width: 19.6rem;
}

.gruop-letter .designer-info-image {
  width: 19.6rem;
  height: 29.4rem;
  aspect-ratio: 2/3;
}

.gruop-letter .designer-address {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  gap: 0.4rem;
}

.gruop-letter .designer-name {
  font-weight: 500;
  padding-top: 0.4rem;
}

.gruop-letter .fabrique-designer-more-list_item-signature {
  font-size: 1.2rem;
}


.main-blog.page-width {
  padding: 0;
}

.alphabet-tabs {
  z-index: 1;
  position: sticky;
  top: -5px;
  background: #ffff !important;
}

.related-designer-section .img-holder figure img {
  object-fit: cover;
}

/*designer Details */
.designer-content-detail .image-gallery {
  width: 310px;
}

.designer-content-detail .about-content {
  width: calc(7% + 652px);
  padding-left: 3%;
  padding-right: 9%;
}

.designer-content-detail .carousel-cell1 {
  width: 100% !important;
  transition: all 0.2s;
  left: 0%;
}

.designer-content-detail {
  /* display: inline-block; */
  width: 100%;
  /* overflow: hidden; */
  padding-top: 5.2rem !important;
  padding-bottom: 5.2rem !important;
}

.designer-content-detail .image-gallery .img-holder {
  padding-bottom: 146.778% !important;
}

.designer-content-detail .image-gallery .img-holder img {
  object-fit: cover;
}

.video-section1 .img-holder {
  padding-bottom: 50.1%;
}

.video-section1,
.other-desc-section .image {
  margin: 3.2rem 0;
  line-height: 0;
}

.other-desc-section .image img {
  max-width: 100%;
  height: auto !important;
  width: 100%;
}

.related-designer-section .title-wrapper--no-top-margin>.title {
  text-transform: capitalize;
}

.related-designer-section .designer-product-count a:hover {
  color: var(--secondary) !important;
}

.video-section1 .deferred-media__poster-button.motion-reduce {
  background-color: #031c2466;
  border: 0 !important;
  transition: transform var(--duration-long) ease,
    box-shadow var(--duration-long) ease;
  transform-origin: center;
}

.collection__title.title-wrapper {
  margin-bottom: 3.2rem !important;
}

.video-section1 .deferred-media__poster-button {
  border: 0 !important;
  transition: all 0.5s;
  background: #031c2466;
  cursor: pointer;
}

.profile-section .designer-name {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1;
}

.designer-content-detail .about-content {
  color: var(--primary);
}

.designer-description {
  margin-top: 3.2rem;
  line-height: 2.1rem;
  font-size: 1.2rem;
}

.designer-content-detail .designer-address,
.designer-content-detail .designer-since,
.designer-content-detail .designer-product-count {
  margin-bottom: 8px;
  font-size: 12px;
}

.designer-content-detail .designer-product-count {
  margin-bottom: 32px !important;
  line-height: 1;
}

.other-desc-section .content {
  line-height: 20px;
}

.other-desc-section .content:last-child {
  margin-bottom: 3.2rem;
}

.designer-product-count a:hover {
  color: var(--primary) !important;
}

div#designer-products-section .collection__title.title-wrapper,
.related-designer-section .title-wrapper--self-padded-tablet-down {
  padding: 0 !important;
}

ul#Slider-designer-products,
.related-products .grid--4-col-desktop {
  column-gap: 32px;
  row-gap: 32px;
}

ul#Slider-designer-products.grid--4-col-desktop .grid__item,
.related-products .grid--4-col-desktop li {
  width: calc(25% - 32px * 3 / 4);
  max-width: calc(25% - 32px * 3 / 4);
}

div#Slider-related-designer .carousel-cell4 {
  width: calc(100% / 5.2 - 32px);
  margin-right: 32px !important;
}

.related-designer-section .img-holder {
  padding-bottom: 150%;
}

.related-designer-section.content-container--full-width {
  padding-right: 0 !important;
}

.related-designer-section .carousel-progress {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 2px;
  border-radius: 100px;
  background-color: #edf0f0;
}

.related-designer-section .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  border-radius: 4px;
  background-color: #031c24 !important;
  display: block !important;
}

.related-designer-section .carousel-progress {
  margin-top: 50px !important;
  width: calc(100% - 5rem);
}

.related-designer-section .center.collection__view-all {
  margin-top: 2rem !important;
}

.related-designer-section .designer-address {
  padding-top: 1.2rem;
  font-size: 1.2rem;
}

.related-designer-section .blog_info a {
  text-decoration: none;
}

.related-designer-section .designer-address svg {
  top: 0px;
  width: 10px !important;
  height: auto !important;
}

.blog_info .fabrique-designer-designerName {
  padding-top: 0.4rem;
}

.blog_info .fabrique-designer-signature {
  padding-top: 0.4rem;
}

.blog_info .designer-product-count {
  padding-top: 0.4rem;
}

.related-designer-section .blog_info p {
  font-size: 14px !important;
  color: #999999 !important;
  margin-bottom: 4px !important;
  margin-top: 4px !important;
}

.related-designer-section .designer-product-count a {
  text-decoration: underline !important;
  color: var(--primary) !important;
}

.related-designer-section .carousel-progress {
  width: calc(100% - 5rem);
  margin-left: 0rem !important;
}

.video-section1 .img-holder figure img {
  object-fit: cover;
}

.related-designer-section.content-container--full-width {
  padding-top: 5.2rem !important;
  padding-bottom: 5.2rem !important;
}

.related-designer-section .center.collection__view-all {
  margin-top: 0 !important;
}

.related-designer-section.content-container--full-width .designer-product-count {
  line-height: 1;
}

.related-designer-section .carousel-progress {
  margin-top: 32px !important;
}

/*drawer menu */
.menu-drawer__menu-item>.icon-arrow,
.menu-drawer__close-button .icon-arrow {
  width: 2rem !important;
}

.menu-drawer__menu-item {
  font-size: 14px !important;
}

.menu-drawer__submenu .menu-drawer__menu li:not(:last-child):after {
  display: none;
}

.menu-drawer__menu-item--active,
.menu-drawer__menu-item:focus,
.menu-drawer__close-button:focus,
.menu-drawer__menu-item:hover,
.menu-drawer__close-button:hover {
  background: transparent !important;
}

.menu-drawer__menu-item>.icon-arrow {
  right: 0 !important;
}

.menu-drawer__account {
  color: #fff !important;
  width: 100%;
}

.menu-drawer__account svg {
  display: none;
}

.menu-drawer__utility-links {
  background: transparent !important;
}

.menu-drawer__account:after {
  display: none;
}

.menu-drawer__account:hover:after {
  display: block;
}

.overflow-hidden-tablet .home-slideshow-json-section .slideshow__controls {
  z-index: 1;
}

.country-toggle-open .grecaptcha-badge {
  display: none !important;
}

/*clothing care */
.main-page-title {
  font-size: 24px;
}

.template-page-clothing-care-tips h1,
.template-page-leather-care-instructions h1 {
  position: relative;
  margin: 0;
  padding: 5.2rem 0;
}

.template-page-clothing-care-tips h1:after,
.template-page-leather-care-instructions h1:after {
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  transition: 0.3s;
  right: 0;
  border: 0 !important;
  top: unset !important;
  outline: none !important;
  box-shadow: none !important;
  opacity: 0.2;
  background-image: url("dashed.svg");
}

.right-content img {
  max-width: 100% !important;
  height: auto;
}

.right-content .image {
  margin-bottom: 20px;
}

.right-content {
  color: var(--primary) !important;
}

.right-content strong,
.right-content b {
  font-weight: 500;
}

.right-content h1 {
  font-size: 18px;
  margin-top: 0;
}

.right-content h2 {
  font-size: 14px;
}

.right-content p {
  margin: 0;
  line-height: 22px;
}

.right-content p+p {
  margin-top: 10px;
}

.right-content ul,
.right-content ol {
  padding-left: 0 !important;
}

.right-content ul {
  list-style: none;
  padding-left: 15px !important;
}

.right-content ul li:before {
  position: absolute;
  content: " ";
  background: var(--primary) !important;
  width: 4px;
  height: 4px;
  border-radius: 100px;
  left: -1.5rem;
  top: 1rem;
}

.right-content ul li {
  position: relative;
}

.template-page-clothing-care-tips .right-content .image {
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
}

.rte a:hover {
  text-decoration-thickness: unset !important;
}

.register #create_customer .form__message {
  color: #fff;
}

.customer h2.form__message {
  font-size: 14px !important;
  font-weight: normal !important;
  outline: none;
  box-shadow: none !important;
}

.quantity__input[type="number"] {
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

div#main-Slider-designer_list .img-holder {
  padding-bottom: 56%;
}

div#main-Slider-designer_list .img-holder:before {
  width: 42px;
  height: 42px;
  background: #031c2478;
  content: " ";
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 100px;
  background-image: url(video-new.svg);
  background-repeat: no-repeat !important;
  justify-content: center;
  background-position: 55% 50%;
  background-size: 11px;
  pointer-events: none;
}

div#main-Slider-designer_list .img-holder figure img {
  object-fit: cover;
}

.right-content ol {
  padding-left: 0 !important;
  list-style-position: inside;
}

.facet-checkbox .icon-checkmark {
  top: 50% !important;
  left: 0 !important;
  transform: translate(0%, -45%);
}

.product__accordion .accordion__content .designer-content {
  width: calc(100% - 13.6rem);
  font-size: 1.4rem;
}

.product__accordion .accordion__content .designer-content .designer-since {
  margin: 0.4rem 0;
}

.cst-modal .image-with-text__text.rte.body p {
  line-height: 22px;
}

.template-page-clothing-care-tips .right-content .tab__content.rte {
  max-width: 652px;
}

.template-page-clothing-care-tips .right-content .image {
  text-align: left;
}

/*css for firefox */
@-moz-document url-prefix() {

  .facet-filters__field .select__select,
  .mobile-facets__sort .select__select {
    min-width: 142px !important;
  }

  /* .line-through { text-decoration: none !important; }
   .line-through { text-decoration: underline !important; text-decoration-color: currentcolor !important; text-underline-offset: -40% !important; text-decoration-skip-ink: none !important; }
    */
  .underlined-link,
  .customer a,
  .inline-richtext a {
    text-underline-offset: 0.4rem;
    text-decoration-thickness: 0.1rem;
    transition: text-decoration-thickness ease 0.1s;
  }

  .link,
  .customer a {
    text-underline-offset: 0.4rem;
  }
}

.collection__description,
.product-card-wrapper .card__heading.h5,
.product-card-wrapper .price {
  white-space: normal;
  max-width: 100% !important;
}

/*cart Notifiacation*/
div#cart-notification {
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
  border: 0 !important;
  padding: 0;
  max-width: 37.8rem;
}

.cart-notification__header {
  border-bottom: 1px solid #d8d8d8;
  color: var(--primary) !important;
  padding-top: 24px !important;
}

.cart-notification__heading {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.6px;
}

.cart-notification__header svg * {
  color: var(--primary) !important;
}

.cart-notification-product__image {
  margin-top: 0 !important;
}

.cart-notification__close {
  margin-top: 3px !important;
  margin-right: 0 !important;
  height: auto !important;
  width: auto !important;
}

.cart-notification__header,
.cart-notification-product,
.cart-notification__links {
  padding: 15px 21px;
}

button.link.button-label {
  border: 0 !important;
}

button.link.button-label:hover {
  text-decoration-color: var(--alternate) !important;
}

.cart-notification__links a {
  font-size: 14px !important;
}

h3.cart-notification-product__name.h4 {
  font-size: 12px;
}

div#cart-notification-product .product-option {
  color: #999999;
}

div#cart-notification-product .price {
  font-size: 12px !important;
}

div#cart-notification-product .product-option {
  font-size: 12px;
}

.cart-notification-product__image+.cstdiv {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 4px;
}

.cart-notification__links>* {
  margin-top: 16px !important;
}

.cart-notification__links {
  padding-top: 0 !important;
  padding-bottom: 24px !important;
}

div#cart-notification-product .caption-with-letter-spacing.designer-name {
  text-transform: none !important;
  margin-top: 0 !important;
  font-size: 12px !important;
  color: var(--primary) !important;
}

.cart-notification-product {
  padding-top: 24px !important;
}

.cart-notification__links a {
  margin-top: 0 !important;
}

.cart-notification-product {
  align-items: stretch !important;
}

.cart-notification-product__image+.cstdiv {
  justify-content: space-between !important;
}

.footer .localization-form__currency {
  display: unset;
}

h3.cart-notification-product__name.h4 {
  font-weight: normal;
}

.template-cart .cart-items dl .product-option {
  color: #999;
}

.cart__checkout-button {
  min-height: 44px !important;
}

.template-cart .cart__footer {
  padding: 4.2rem 0 !important;
}

.cart-item__details>*+* {
  margin-top: 0.4rem !important;
}

/*search*/

.template-search__header h1:after {
  content: " ";
  display: block;
  width: 100%;
  height: 1px;
  background-image: url(dashed.svg);
  position: absolute;
  transition: 0.3s;
  right: 0;
  border: 0 !important;
  top: unset !important;
  outline: none !important;
  box-shadow: none !important;
  opacity: 0.3;
  bottom: 0;
}

.template-search .product-grid {
  margin-top: 0 !important;
}

.template-search .facets__heading--vertical {
  color: rgba(var(--color-foreground), 1);
  font-weight: 500;
}

.search-modal__form {
  max-width: unset;
}

predictive-search.search-modal__form,
.search__input.field__input {
  border-radius: 4px;
  background: #edf0f0;
}

predictive-search.search-modal__form .field:after {
  display: none;
}

.search__button .icon {
  height: 21px !important;
  width: 21px !important;
  transform: scale(1) !important;
}

predictive-search.search-modal__form .search__button {
  position: absolute;
  left: 10px;
  height: 4.5rem !important;
}

button.reset__button.field__button {
  display: none;
}

.search-modal__content .modal__close-button.link {
  position: absolute;
  right: 0.5rem;
}

.search__input.field__input {
  padding-right: 4.8rem !important;
  padding-left: 5.8rem !important;
}

.predictive-search__heading {
  padding-top: 32px !important;
  padding-bottom: 16px !important;
}

.predictive-search-results-products-list {
  padding: 16px 0 !important;
}

ul#predictive-search-results-products-list {
  padding: 16px 0;
}

ul#predictive-search-results-queries-list {
  padding: 16px 0;
}

/*cart page */
cart-remove-button a.button.button--tertiary {
  background: transparent !important;
  border: 0 !important;
}

div#dynamic-checkout-cart ul li {
  height: 47px !important;
  margin-bottom: 9px !important;
}

.cart__ctas button {
  width: 100% !important;
  line-height: unset !important;
}

.predictive-search {
  z-index: 4 !important;
}

.search-modal__content .modal__close-button.link svg {
  width: 12px;
  opacity: 1;
  transform: none !important;
}

.no-results.center {
  text-align: left;
  margin-top: 32px;
}

.no-results.center h3 {
  margin-bottom: 0;
  line-height: 1;
}

.facets__item label {
  text-decoration: none !important;
}

.facets-layout-list .facets__label:hover .facet-checkbox__text,
.facets-layout-list input:focus~.facet-checkbox__text {
  text-decoration: none !important;
}

.cart-item__details .designer-name {
  text-transform: none !important;
  font-size: 12px;
}

a.cart-item__name {
  font-size: 14px !important;
  font-weight: normal !important;
}

.cart__login-title {
  margin: 3.2rem 0 0rem !important;
  padding-top: 24px !important;
}

h2.cart__empty-text+.button {
  background: #031c24 !important;
  font-size: 14px !important;
  min-height: 44px !important;
  line-height: 44px !important;
}

h2.cart__empty-text+.button:hover {
  opacity: 0.8 !important;
}

/* .cart__dynamic-checkout-buttons div[role=button] {
height: 45px !important;
} */

/*default page*/
.responsive-table {
  margin: 15px 0px;
}

.select__select,
.customer select {
  border: 0 !important;
  outline: none !important;
  position: relative;
}

.page-title-borderd:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  transition: 0.3s;
  right: 0;
  border: 0 !important;
  top: unset !important;
  outline: none !important;
  box-shadow: none !important;
  opacity: 0.2;
  background-image: url(dashed.svg);
  bottom: 0;
}

cart-items.is-empty .title-wrapper-with-link {
  display: block !important;
}

.is-empty .cart__empty-text {
  font-size: 14px;
  margin: 16px 0;
}

.page-title-borderd {
  position: relative;
  padding: 40px 0;
}

.select:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-image: url("dashed.svg");
  position: absolute;
  bottom: 0;
  transition: 0.3s;
  z-index: 1;
  right: 0;
  border: 0 !important;
  top: unset !important;
  outline: none !important;
  box-shadow: none !important;
  opacity: 0.3;
}

.template-cart .cart-item:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  transition: 0.3s;
  right: 0;
  border: 0 !important;
  top: unset !important;
  outline: none !important;
  box-shadow: none !important;
  opacity: 0.2;
  background-image: url(dashed.svg);
  bottom: 0;
}

.template-cart .cart-item {
  position: relative;
}

.template-cart table.cart-items thead {
  display: none;
}

.template-cart .cart-items td {
  padding-bottom: 3.2rem;
  padding-top: 3.2rem;
}

.template-cart .cart__items {
  border-bottom: 0;
  padding-bottom: 0;
}

.cst-btn-outline {
  border: 1px solid var(--primary) !important;
}

.cst-btn-solid {
  background: var(--primary) !important;
  color: #ffff !important;
}

.cst-btn-outline:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

.cst-dots .banner:after,
.cst-dots .banner__media:after {
  opacity: 0 !important;
}

.addresses input[type="checkbox"] {
  position: relative;
  top: 2px;
}

.template-product media-gallery .product-media-container .media {
  padding-top: var(--ratio-percent) !important;
}

.product__info-container .product-form .product-form__buttons .product-form__submit:disabled {
  background: #edf0f0 !important;
  border-color: #edf0f0 !important;
  color: #999999 !important;
}

.product--large:not(.product--no-media) .product__info-wrapper .badge.price__badge-sold-out {
  display: none !important;
}

.template-cart .cart__items .price {
  font-size: 1.4rem !important;
}

.customer select+svg {
  right: 0;
}

.facets__display-vertical {
  padding-bottom: 0;
}

.mega-menu__promo p:not(.h6) {
  text-decoration: underline !important;
}

/*about */
.template-page-about .color-background-1 {
  color: rgba(var(--color-foreground), 1);
}

.template-page-about .rich-text__blocks {
  max-width: 80%;
}

.template-page-about .image-with-text .grid {
  max-width: 1260px;
  margin: 0 auto;
}

.template-page-about .image-with-text__content {
  padding: 0;
}

.template-page-about .grid--2-col-tablet .grid__item {
  width: calc(50% - 100px / 2);
}

.template-page-about .grid--gapless.grid {
  column-gap: 100px;
}

.template-page-about .image-with-text__content>*+* {
  margin-top: 2.4rem;
}

.template-page-about .image-with-text h2 {
  letter-spacing: -0.4px;
}

.template-page-about .banner__box {
  padding: 4rem 3.5rem !important;
}

.main-holder .complete-look-products {
  width: 100%;
}

.main-holder {
  width: 100%;
  display: flex;
  column-gap: 32px;
  grid-row-gap: 0px;
  max-width: 1440px;
  margin: 0 auto;
}

.hot-spot__dot {
  padding: 0 !important;
  cursor: pointer;
  width: 14px;
  height: 14px;
  border-radius: 100px;
  background: #ffff;
  color: #ffff;
  place-items: center;
  transition: transform 0.2s ease-in-out;
  display: grid;
  position: relative;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

.hot-spot__dot:after {
  cursor: pointer;
  content: "";
  box-sizing: content-box;
  top: calc(-1 * 1rem);
  left: calc(-1 * 1rem);
  padding: 1rem;
  background: #e9e2e24f;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  animation: 2s ease-in-out infinite alternate ping;
  position: absolute;
}

.hot-spot {
  display: none;
  top: var(--hot-spot-vertical-position);
  left: var(--hot-spot-horizontal-position);
  z-index: 1;
  position: absolute !important;
}

@keyframes ping {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0.8);
  }
}

.hot-spot-popover.popover .content {
  background: #031c2466 !important;
  padding: 6px 15px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: left;
  color: #ffff;
  border-radius: 2px;
}

x-popover.hot-spot-popover.popover {
  position: absolute;
  display: flex;
  align-items: center;
  width: max-content;
  top: 50%;
  max-width: 200px;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8) translateY(-50%);
  transition: visibility 0.4s cubic-bezier(0.75, 0, 0.175, 1),
    opacity 0.4s cubic-bezier(0.75, 0, 0.175, 1),
    transform 0.4s cubic-bezier(0.75, 0, 0.175, 1);
  will-change: transform;
  transform-origin: right;
  z-index: 1;
  border-radius: 2px;
}

.hot-spot.open .popover {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateY(-50%);
}

.hot-spot.position-left-top x-popover.hot-spot-popover.popover {
  right: calc(100% + 18px);
  left: auto;
  transform-origin: right;
}

.hot-spot.position-right-bottom x-popover.hot-spot-popover.popover {
  left: calc(100% + 18px);
  right: auto;
  transform-origin: left;
}

/* input[type=text], input[type=password], input[type=email], input[type=number], input[type=tel], textarea { -webkit-appearance: none; }
input[type=text], input[type=password], input[type=email], input[type=tel] { -webkit-appearance: none; -moz-appearance: none; appearance: none; }
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, textarea:-webkit-autofill:active, select:-webkit-autofill, .popout__toggle:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus, select:-webkit-autofill:active, .input-group:-webkit-autofill, .input-group:-webkit-autofill:hover, .input-group:-webkit-autofill:focus, .input-group:-webkit-autofill:active { transition: background-color 5000s ease-in-out 0s, border-color 5000s ease-in-out 0s; }
 */
.show_account_bg input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):-webkit-autofill,
.show_account_bg input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):-webkit-autofill:hover,
.show_account_bg input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):-webkit-autofill:focus,
.show_account_bg input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  transition: background-color 5000s ease-in-out 0s;
  /* Adjust the transition duration as needed */
}

.show_account_bg input:-webkit-autofill {
  -webkit-text-fill-color: #fff;
}

.menu-drawer__account,
h2.cart__empty-text+a,
.customer button,
.customer a.button.btn--full.btn--outline {
  min-height: calc(4.21rem + var(--buttons-border-width) * 2) !important;
  max-height: 44px !important;
}

.mobile-facets__clear.button.btn--outline,
.mobile-facets__clear.button--outline {
  min-height: 44px !important;
}

.customer form {
  max-width: 424px !important;
}

/*responsive css*/
@media only screen and (min-width: 1920.98px) {

  .page-width,
  .page-width-desktop {
    max-width: 1440px
      /*ccc*/
    ;
    margin: 0 auto;
  }

  .footer {
    margin-top: -2px !important;
  }

  .show_account_bg {
    max-height: 860px !important;
  }

  .content-container--full-width {
    max-width: 100%
      /*ccc*/
    ;
    margin: 0 auto;
  }

  .template-page-clothing-care-tips .content-container--full-width:before {
    width: calc(100% - 10rem);
    margin: 0 auto;
    left: 0;
  }

  .related-designer-section.content-container--full-width {
    padding-right: 0 !important;
  }

  .profile-section {
    text-align: left;
  }

  .template-product .fabs-images {
    max-width: 100%
      /*ccc*/
      !important;
    margin: 0 auto;
    /* ccc padding-left: 5rem !important; padding-right: 5rem !important;*/
  }

  .home-gab-moment-json-section.section-fabs-moment,
  .template-index .home-slideshow-json-section slideshow-component,
  .section-designer_banner,
  .home-collection-products-with-banner-json-section {
    /* ccc padding-left: 5rem !important; padding-right: 5rem !important;*/
    max-width: 100%;
    margin: 0 auto;
    background: transparent !important;
  }

  .section-desktop-products_topicCollection-padding slider-component {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .home-gab-moment-json-section.section-fabs-moment .collection__title.title-wrapper {
    padding: 0
      /* ccc */
      5rem;
  }

  div#designer-products-section .collection__title.title-wrapper {
    text-align: left;
  }
}

@media screen and (max-width: 1899.9px) {
  .product-media-container.constrain-height {
    --viewport-offset: 1px !important;
  }
}

@media screen and (max-width: 1699.9px) {
  .product-media-container.constrain-height {
    --viewport-offset: 1px !important;
  }
}

@media screen and (max-width: 1599.9px) {
  .mega-menu__list.megamenu-with-images {
    padding-left: 8%;
  }

  .mega-menu__list {
    padding-left: 8%;
    padding-right: 8%;
  }

  .template-collection .cst-dots .banner__text.rte p {
    font-size: 17px !important;
  }

  .designer-content-detail .about-content {
    padding-left: 3%;
    padding-right: 4%;
  }

  x-popover.hot-spot-popover.popover {
    max-width: 180px !important;
  }
}

@media screen and (max-width: 1499.9px) {
  .right-content {
    width: 652px !important;
  }

  .collapsible-content__wrapper .right-content {
    margin-left: calc(30% - 326px);
  }

  .left-content {
    width: 20% !important;
  }

  .designer-content-detail .about-content {
    padding-right: 0 !important;
    width: calc(7% + 652px);
    max-width: 100%;
  }

  .template-page-about .rich-text__blocks {
    max-width: 100%;
  }

  .template-page-about .image-with-text .grid {
    max-width: 1174px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1399.9px) {

  .home-collection-products-json-section .grid,
  .home-collection-products-with-banner-json-section .grid,
  .template-index .product-grid,
  .template-search .product-grid,
  .template-cart .product-grid {
    gap: 24px;
  }

  .home-collection-products-json-section .grid--4-col-desktop .grid__item,
  .home-collection-products-with-banner-json-section .grid__item,
  .template-index .product-grid .grid__item,
  .template-search .product-grid .grid__item,
  .template-cart .product-grid .grid__item {
    width: calc(25% - 24px * 3 / 4);
    max-width: calc(25% - 24px * 3 / 4);
  }

  /* .home-slideshow-json-section .slider__slide { min-height: 68rem; } */

  .mega-menu__list.megamenu-with-images {
    padding-left: 5%;
  }

  .mega-menu__list {
    padding-left: 5%;
    padding-right: 5%;
  }

  ul#product-grid {
    --grid-desktop-horizontal-spacing: 25px;
    row-gap: 25px;
  }

  ul#product-grid.grid--4-col-desktop .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }
}

@media screen and (max-width: 1299.9px) {
  .mega-menu__list.megamenu-with-images {
    padding-left: 5rem;
  }

  .mega-menu__list {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  div#Slider-related-designer .carousel-cell4 {
    width: calc(100% / 4.2 - 16px);
    margin-right: 16px !important;
  }

  .section-designer_banner-padding .content-section-custom .title {
    font-size: 20px;
  }
}

@media screen and (max-width: 1199.9px) {
  .header:not(.drawer-menu).page-width {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .slideshow__text-wrapper.banner__content {
    padding: 3rem !important;
  }

  .template-index .collection.section-designer_banner-padding {
    padding: 0 3rem;
  }

  .home-collection-products-json-section {
    padding: 60px 0;
  }

  .footer__content-bottom-wrapper:before {
    left: 3rem;
    right: 3rem !important;
    width: calc(100% - 3rem);
  }

  .content-container--full-width {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .left-content {
    width: 25% !important;
    padding-right: 15px !important;
  }

  .right-content {
    width: calc(100% - 25%);
  }

  .banner__content {
    padding: 3rem !important;
  }

  .related-designer-section .carousel-progress {
    width: calc(100% - 3rem);
    margin-left: 0rem !important;
  }

  .product__accordion.accordion+.product__accordion.accordion {
    margin-bottom: 15px !important;
  }

  .fabricIcon-section {
    grid-template-columns: repeat(4, 2fr);
  }

  .contentIcon-section {
    gap: 10px !important;
  }

  .contentIcon-section {
    grid-template-columns: repeat(3, 2fr);
  }

  .cst-modal .row-content .content .value {
    padding: 12px 6px;
    text-align: center;
    min-width: 92px;
  }

  .cst-modal .washList-section {
    grid-template-columns: repeat(5, 1fr);
    gap: 17px;
  }

  ul#product-grid {
    --grid-desktop-horizontal-spacing: 20px;
    row-gap: 20px;
  }




  .collection__title.title-wrapper--self-padded-tablet-down {
    padding: 0 3rem !important;
  }


  .related-designer-section .collection__title.title-wrapper--self-padded-tablet-down {
    padding: 0 !important;
  }

  .template-page-about .content-container--full-width {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .template-page-about .grid--gapless.grid {
    column-gap: 80px;
    max-width: unset;
  }

  .template-page-about .grid--2-col-tablet .grid__item {
    width: calc(50% - 80px);
  }

  slider-component.page-width {
    padding: 0 3rem !important;
  }

  x-popover.hot-spot-popover.popover {
    max-width: 150px !important;
  }

  .section-designer_banner .collection__description {
    color: var(--primary);
    margin: 0 auto;
    max-width: 200px !important;
  }

  .section-designer_banner-padding .content-section-custom {
    transform: translate(-50%, -33%);
  }
}

@media screen and (max-width: 999.9px) {

  /* .home-slideshow-json-section .slider__slide { min-height: 50rem; } */
  .home-collection-products-json-section .grid,
  .home-collection-products-with-banner-json-section .grid,
  .template-index .product-grid,
  .template-search .product-grid,
  .template-cart .product-grid {
    gap: 18px;
  }

  .home-collection-products-json-section .grid--4-col-desktop .grid__item,
  .home-collection-products-with-banner-json-section .grid__item,
  .template-index .product-grid .grid__item,
  .template-search .product-grid .grid__item,
  .template-cart .product-grid .grid__item {
    width: calc(33.3% - 12px * 3 / 3);
    max-width: calc(33.3% - 10px * 3 / 3);
  }

  .mega-menu__promo {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    padding: 1.1rem 2rem !important;
  }

  .footer__localization:empty+.footer__column--info {
    padding-top: 2rem !important;
  }

  .fab-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .mega-menu-image-wrapper {
    scrollbar-width: none;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .mega-menu__promo {
    display: grid;
    grid: auto / auto-flow 28vw;
  }

  .shopify-section-group-footer-group .multicolumn-list li:not(:last-child) {
    border: 0 !important;
  }

  .customer:not(.account):not(.order) {
    max-width: 80% !important;
  }

  .template-page-contact .content-container--full-width {
    padding-top: 75px !important;
  }

  .left-content {
    width: 28% !important;
    padding-right: 15px !important;
  }

  .right-content {
    width: calc(100% - 28%);
  }

  ul#product-grid.grid--4-col-desktop .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }

  .facets-vertical .active-facets__button-remove {
    padding: 0 !important;
  }

  .active-facets__button-wrapper * {
    font-size: 12px !important;
  }

  a.active-facets__button-remove svg {
    top: 2px;
    position: relative;
  }

  span.mobile-facets__open-label.button-label.small-hide {
    display: none !important;
  }

  .mobile-facets__open-label {
    font-size: 14px !important;
  }

  .mobile-facets__header-inner {
    text-align: left;
  }

  .template-collection .cst-dots .banner__text.rte p {
    font-size: 16px !important;
    max-width: 400px;
  }

  .mobile-facets__label>svg {
    background: transparent !important;
    top: -1px;
  }

  .mobile-facets__highlight {
    background: transparent !important;
  }

  .mobile-facets__summary {
    position: relative;
    padding: 1.5rem 2.5rem;
  }

  .mobile-facets__summary div {
    position: relative;
    line-height: 50px;
    font-weight: 500;
    color: var(--primary) !important;
  }

  /*.mobile-facets__summary div:after, .mobile-facets__close-button:before, .facets-container:before { content: ""; display: block; width: 100%; height: 1px; background-image: url("dashed.svg"); position: absolute; transition: .3s; right: 0; border: 0 !important; top: unset !important; outline: none !important; box-shadow: none !important; opacity: .2; bottom: 0; }*/
  .facets-container:before {
    background-image: url("dashed.svg");
  }

  .facets-container {
    position: relative;
  }

  .mobile-facets__summary div:after {
    bottom: -15px;
  }

  .facet-filters__field .select__select,
  .mobile-facets__sort .select__select {
    height: unset;
    font-size: 14px !important;
  }

  .overflow-hidden-mobile {
    overflow: hidden !important;
  }

  .facets-vertical .facets__price {
    padding: 0.5rem 2.6rem 0.5rem 2.6rem !important;
  }

  .mobile-facets__heading {
    font-size: 16px !important;
    font-weight: 500;
  }

  p.mobile-facets__count {
    display: none;
  }

  .mobile-facets__header {
    display: flex;
    align-items: center;
    padding: 2rem 2.5rem !important;
  }

  .mobile-facets__sort .select .icon-caret {
    width: 12px !important;
    height: 12px !important;
    top: calc(50% - 0.6rem) !important;
  }

  /* .mobile-facets__item:first-child { margin-top: 20px; }*/
  .mobile-facets__item {
    margin: 16px !important;
  }

  .mobile-facets__label .icon-checkmark {
    width: 20px !important;
    height: 20px !important;
    top: 14px !important;
    left: 2.5rem !important;
  }

  button.mobile-facets__close-button.link.link--text.focus-inset {
    position: relative;
  }

  .mobile-facets__main {
    padding: 1.7rem 0 0 !important;
  }

  .mobile-facets__close-button:before {
    left: 2.6rem !important;
    right: 2.6rem !important;
    width: auto;
  }

  .mobile-facets__clear.button.btn--outline,
  .mobile-facets__clear.button--outline {
    background: transparent !important;
    color: var(--primary);
  }

  .facets-vertical .active-facets__button {
    padding: 0 !important;
    margin-left: 0 !important;
  }

  .mobile-facets__open svg {
    width: 2rem !important;
    height: 2rem !important;
  }

  ul#Slider-designer-products,
  .related-products .grid--4-col-desktop {
    column-gap: 15px;
    row-gap: 15px;
  }

  ul#product-grid {
    --grid-desktop-horizontal-spacing: 15px;
    row-gap: 15px;
  }

  ul#product-grid {
    --grid-mobile-vertical-spacing: 15px;
    --grid-mobile-horizontal-spacing: 15px;
  }

  ul#Slider-designer-products.grid--4-col-desktop .grid__item,
  .related-products .grid--4-col-desktop li {
    width: calc(33.3% - 10px * 3 / 3);
    max-width: calc(33.3% - 10px * 3 / 3);
  }

  .designer-content-detail .about-content {
    width: 100% !important;
    padding: 0 !important;
  }

  .designer-content-detail .image-gallery {
    width: 100% !important;
    margin: 0 auto !important;
    margin-bottom: 15px !important;
  }

  .designer-content-detail {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .designer-content-detail {
    padding-top: 0px !important;
    padding-bottom: 50px !important;
  }

  .designer-content-detail .about-content {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
    margin-top: 24px !important;
  }

  div#Slider-related-designer .carousel-cell4 {
    width: calc(100% / 3.2 - 16px);
    margin-right: 16px !important;
  }



  .product-popup-modal__content {
    width: 80% !important;
  }

  .mobile-facets__clear.button.btn--outline:hover,
  .mobile-facets__clear.button--outline:hover {
    background: var(--primary) !important;
    color: #ffff;
    border-color: var(--primary);
  }

  .cst-modal .row-content .content .value {
    padding: 12px 7px;
    min-width: 90px;
  }

  .contentIcon-section {
    grid-template-columns: repeat(2, 2fr);
  }

  .contentIcon-section {
    gap: 10px !important;
  }

  .section-designer_banner-padding .content-section-custom {
    position: relative !important;
    transform: unset !important;
    left: unset !important;
    top: unset !important;
    width: 100% !important;
    text-align: center;
    margin: 0 auto;
  }

  .designer-image.for-mobile-only {
    display: block !important;
  }

  .designer-image.for-mobile-only img {
    height: auto !important;
  }

  .designer-image.for-desktop-only {
    display: none;
  }

  .mobile-facets__label {
    color: var(--primary) !important;
  }

  .mobile-facets__footer>*+* {
    margin-left: 0 !important;
  }

  .mobile-facets__footer>* {
    width: 100% !important;
  }

  .mobile-facets__clear.button.btn--outline,
  .mobile-facets__clear.button--outline {
    max-width: 100% !important;
    min-width: 100% !important;
  }

  .mobile-facets__footer>* {
    border-color: var(--primary) !important;
  }





  .mobile-facets__footer {
    gap: 16px !important;
  }

  .first-video {
    padding-bottom: 60%;
  }

  .template-index .section-designer_banner {
    padding-bottom: 50px !important;
    padding-top: 50px !important;
  }

  .product__accordion .designer-description {
    margin-top: 0.8rem;
    line-height: 2;
  }

  .product__accordion .accordion__content {
    padding-right: 0;
  }

  .product__accordion .accordion__content .designer-section {
    gap: 19px;
  }

  .template-page-about .grid--gapless.grid {
    column-gap: 30px;
    max-width: unset;
  }

  .template-page-about .grid--2-col-tablet .grid__item {
    width: calc(50% - 30px);
  }

  .template-page-about .shopify-section.section [class$="color-background-1"][class|="section-template"] {
    padding-top: 40px !important;
    padding-bottom: 0 !important;
  }

  .template-page-about .content-container--full-width {
    padding-bottom: 0 !important;
  }

  .home-designer-list-json-section {
    padding-bottom: 24px !important;
  }

  .section-designer_banner .collection__description {
    max-width: 270px !important;
  }

  .template-index .section-designer_banner .designer-image.for-mobile-only img {
    width: 100%;
  }

  .fabricIcon-content.show-hover .hover-content {
    visibility: visible !important;
    opacity: 1;
    display: block;
  }

  .mobile-facets__footer>* {
    font-size: 14px !important;
  }

  .mobile-facets__footer {
    padding: 15.5px 1.6rem !important;
  }

  .mobile-facets__clear.button.btn--outline,
  .mobile-facets__clear.button--outline {
    font-size: 14px !important;
    line-height: 42px !important;
    min-height: 42px !important;
  }

  .mobile-facets__footer {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }

  .active-facets__button svg {
    width: 10px !important;
    height: 10px !important;
  }
}

@media screen and (max-width: 767px) {

  ul#product-grid.grid--4-col-desktop .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .header__icons svg {
    transform: scale(1.2);
  }

  .header__heading-logo {
    height: 25px;
    width: 100px;
  }

  .header__icon--menu svg {
    width: 1.8rem;
    height: 1.8rem;
  }

  .button,
  .shopify-challenge__button,
  .customer button,
  button.shopify-payment-button__button--unbranded {
    min-width: calc(12rem + var(--buttons-border-width) * 2 - 2px);
    min-height: calc(3.4rem + var(--buttons-border-width) * 2);
  }

  .home-slideshow-json-section .slider-counter__link--dots .dot {
    width: 4px !important;
    height: 4px !important;
  }

  .banner__box>*+.banner__buttons {
    margin-top: 1.6rem;
  }

  .banner__box>*+.banner__text p {
    line-height: 16.39px;
  }

  .header:not(.drawer-menu).page-width,
  .utility-bar__grid.page-width {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  .slideshow__text-wrapper.banner__content {
    padding: 1.6rem !important;
  }

  .home-collection-products-json-section {
    padding: 24px 0;
  }

  .page-width-desktop,
  .page-width {
    padding: 0 1.6rem;
  }

  .for-mobile-only {
    display: flex !important;
  }

  .for-desktop-only {
    display: none;
  }

  .banner--content-align-mobile-left .banner__box {
    text-align: left;
    align-items: flex-start !important;
  }

  .left-content {
    display: flex;
    flex-direction: row;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 15px;
    align-items: center;
  }

  .left-content::-webkit-scrollbar {
    display: none;
  }

  .home-slideshow-json-section .banner__content {
    align-items: end !important;
    justify-content: start !important;
  }

  .template-index .collection.section-designer_banner-padding {
    padding: 0 1.6rem;
  }

  /* .home-slideshow-json-section .slider__slide { min-height: 65rem; } */
  .home-collection-products-json-section .grid,
  .home-collection-products-with-banner-json-section .grid,
  .template-index .product-grid,
  .template-search .product-grid,
  .template-cart .product-grid {
    gap: 15px;
  }

  .home-collection-products-json-section .grid--4-col-desktop .grid__item,
  .home-collection-products-with-banner-json-section .grid__item,
  .template-index .product-grid .grid__item,
  .template-search .product-grid .grid__item,
  .template-cart .product-grid .grid__item {
    width: calc(50% - 15px * 2 / 4) !important;
    max-width: calc(50% - 15px * 2 / 4) !important;
  }

  .footer .grid--4-col-tablet .grid__item:first-child {
    width: 100% !important;
  }

  .footer__column--info {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }

  .fab-grid li {
    display: none;
  }

  .fab-grid li:nth-child(-n + 6) {
    display: block;
  }

  .fab-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-fabs-moment-padding .img-holder {
    padding-bottom: 150%;
  }

  .section-fabs-moment {
    margin-top: 50px;
  }

  .footer__localization:empty+.footer__column--info {
    padding-left: 0 !important;
    padding-top: 1rem !important;
  }

  .home-collection-products-with-banner-json-section .banner--desktop-transparent .banner__box {
    padding-left: 1.6rem;
  }

  h2,
  .h2 {
    font-size: 20px;
  }

  .designer-image img {
    width: auto;
    height: auto;
  }

  .section-designer_banner h2 {
    font-size: 24px;
  }

  .section-designer_banner {
    padding: 70px 0;
    padding-top: 15px;
  }

  .home-designer-list-json-section {
    padding-bottom: 24px !important;
    padding-right: 0 !important;
  }

  .home-collection-products-with-banner-json-section .banner__content {
    align-items: end !important;
    justify-content: start !important;
  }

  .collection__view-all a {
    margin-bottom: 0;
    margin-top: 20px !important;
  }

  .carousel-progress {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 3px;
    border-radius: 100px;
    background-color: #edf0f0;
  }

  .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    border-radius: 4px;
    background-color: #031c24 !important;
    display: block !important;
  }

  .carousel-progress {
    margin-top: 30px !important;
  }

  .shopify-section-group-footer-group .multicolumn .page-width {
    padding-top: 50px !important;
  }

  .footer-block__newsletter {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
  }

  .footer-block__newsletter {
    text-align: left !important;
  }

  .footer-block__heading {
    margin-bottom: 0.8rem !important;
  }

  .mega-menu__promo {
    display: grid;
    grid: auto / auto-flow 47.73vw;
    gap: 10px;
  }

  .header__icon--menu {
    height: 4.4rem;
    width: 4.4rem;
  }

  .collection__description,
  .product-card-wrapper .card__heading.h5,
  .product-card-wrapper .price {
    font-size: 12px;
  }

  .color-count {
    font-size: 12px;
    letter-spacing: 0px;
    color: #999999;
    margin: 0;
    line-height: 1 !important;
  }

  .color-count:empty {
    display: none;
  }

  .section-designer_banner .collection__description {
    margin: 16px auto;
  }

  .customer:not(.account):not(.order) {
    max-width: 100% !important;
  }

  .footer__list-social.list-social {
    gap: 15px;
    justify-content: flex-start;
  }

  .footer-block__heading {
    display: flex;
    justify-content: space-between;
    width: 100% !important;
  }

  .footer .grid--4-col-tablet .grid__item {
    width: 100% !important;
  }

  .footer-block__details-content.collapsible-content {
    display: none;
  }

  .footer-block--menu .footer-block__details-content {
    display: none;
  }

  .footer-block.footer-block--menu .footer-block__heading:after {
    content: " ";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    transition: 0.3s;
    z-index: 1;
    right: 0;
    border: 0 !important;
    top: unset !important;
    outline: none !important;
    box-shadow: none !important;
    opacity: 0.2;
    background-image: url("dashed.svg");
    bottom: -5px;
  }

  .footer-block.footer-block--menu .footer-block__heading.active:after {
    opacity: 1 !important;
  }

  .footer-collapse-icon.toggle {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .footer-collapse-icon {
    transition: 0.2s;
  }

  .footer__content-bottom-wrapper:before {
    display: none;
  }

  .footer-block__details-content {
    margin-bottom: 2.5rem !important;
  }

  .footer-block.footer-block--menu {
    position: relative;
    padding-bottom: 15px;
  }

  .footer-block.footer-block--menu .footer-block__heading {
    padding-bottom: 1rem;
  }

  .footer .grid--4-col-tablet .grid__item {
    width: 100% !important;
    display: inline-block;
    margin: 1.8rem 0;
  }

  .footer-block__details-content .list-menu__item--link {
    font-size: 12px !important;
    display: inline-block;
  }

  .footer:before {
    display: none;
  }

  .section-designer_banner .collection__description {
    max-width: 220px;
  }

  .footer-collapse-icon {
    display: block;
  }

  .footer__column--info {
    padding-left: 0 !important;
  }

  .footer__localization h2 {
    display: none !important;
  }

  .footer__localization .disclosure__list-wrapper {
    right: unset !important;
  }

  .footer__localization {
    justify-content: start !important;
    padding-left: 0 !important;
  }

  .footer__localization .disclosure {
    position: relative;
    margin-right: -0px;
  }

  .footer__localization .localization-form__select .icon-caret {
    top: calc(50% - 0.2rem) !important;
  }

  .customer form {
    margin-top: 3rem;
  }

  .show_account_bg:before {
    opacity: 0.5;
  }

  .contact__button button {
    min-width: unset;
  }

  .right-content {
    width: 100% !important;
  }

  .left-content {
    width: 100% !important;
  }

  .left-content a {
    white-space: nowrap;
  }

  .template-page-contact .content-container--full-width {
    padding-top: 41px !important;
  }

  .left-content.for-desktop-only {
    display: none !important;
  }

  .left-content a {
    margin: 16px 0;
    font-size: 14px;
    line-height: 20px;
  }

  .left-content.for-mobile-only {
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-bottom: 19px !important;
    position: relative;
    z-index: 1;
  }

  .content-container--full-width {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }

  .contact__button {
    margin-bottom: 2rem;
  }

  .banner--adapt {
    min-height: 375px;
  }

  .banner__content {
    align-items: flex-end !important;
  }

  .banner--content-align-left.banner--desktop-transparent .banner__box,
  .banner--content-align-right.banner--desktop-transparent .banner__box,
  .banner--medium.banner--desktop-transparent .banner__box {
    padding-bottom: 26px !important;
  }

  .right-content .content-description p {
    font-size: 14px !important;
  }

  .banner__content {
    padding: 1.6rem !important;
  }

  .collapsible-content-wrapper-narrow {
    padding: 0 !important;
  }

  .main-page-title {
    font-size: 18px;
    margin-bottom: 2rem;
  }

  .template-page-faq .left-content.for-mobile-only {
    margin-bottom: 0px !important;
  }

  div#main-Slider-designer_list .carousel-cell .img-holder {
    padding-bottom: 65% !important;
  }

  .cst-modal .product-popup-modal__content {
    max-width: 100% !important;
    max-height: 100% !important;
    width: 100%;
    height: 100% !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .product-fabric-bg-section .icons-content .image img {
    width: 50px !important;
    max-width: 50px !important;
  }

  .product-popup-modal__content img {
    height: auto !important;
  }

  .heading {
    font-size: 12px;
  }

  .cst-modal .washList-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .cst-modal .product-popup-modal__content-info {
    padding: 0 1.6rem;
    font-size: 12px;
  }

  .cst-modal-header .h2 {
    font-size: 16px;
  }

  .cst-modal .row-content .content .value {
    padding: 10px 7px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-wrap: wrap;
  }

  .cst-modal .row-content {
    width: 100% !important;
  }

  .cst-modal .row-content .content {
    gap: 0;
  }

  .cst-dots .slider.slider--everywhere .slider__slide {
    min-height: 375px;
  }

  .product-model-info .image-section {
    width: 55%;
  }

  .heading-section.cst-heading-section {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .heading-section.cst-heading-section h2 {
    max-width: unset !important;
  }

  .complete-look-products {
    width: 100% !important;
    overflow: hidden;
  }

  .fabs-list-section .fab-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .fabs-list-section .fab-grid li.mobile-small-image {
    grid-area: span 1 / span 1 !important;
  }

  .fabs-list-section .fab-grid li.mobile-big-image {
    grid-area: span 2 / span 2 !important;
  }

  .fabs-list-section .fab-grid li.mobile-xl-image {
    grid-area: span 3 / span 3 !important;
  }

  .fabs-list-section .fab-grid li {
    display: block;
  }

  .slideshow__control-wrapper {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
    width: 100% !important;
  }

  .product__media-list .slider.slider--mobile {
    scroll-padding-left: 0 !important;
  }

  .product__media-list .product__media-item {
    width: 100% !important;
  }

  .product-media-container.constrain-height {
    --viewport-offset: 400px;
    --constrained-min-height: 500px;
  }

  .product__media-list .slider.slider--mobile {
    scroll-padding-left: 0 !important;
  }

  .main-blog.page-width {
    padding: 0;
  }

  .fabs-list-section .img-holder {
    padding-bottom: 160%;
  }

  .active-facets.active-facets-mobile {
    display: none;
  }

  .facets-vertical .active-facets__button {
    padding: 0 !important;
  }

  .home-collection-products-with-banner-json-section .for-mobile-only {
    display: block !important;
  }

  .product-card-wrapper .price {
    font-size: 12px !important;
  }

  .mobile-facets__inner {
    width: 100% !important;
  }

  .template-collection .cst-dots .banner__text.rte p {
    font-size: 12px !important;
    max-width: 400px;
  }

  .designer-content-detail .about-content {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }

  ul#Slider-designer-products li {
    display: none !important;
  }

  ul#Slider-designer-products.grid--4-col-desktop .grid__item,
  .related-products .grid--4-col-desktop li {
    width: calc(50% - 15px / 2);
    max-width: calc(50% - 15px / 2);
  }

  ul#Slider-designer-products li:nth-child(-n + 4) {
    display: block !important;
  }

  div#Slider-related-designer .carousel-cell4 {
    width: calc(100% / 2.2 - 12px);
    margin-right: 12px !important;
  }

  .related-designer-section .carousel-progress {
    margin-top: 16px !important;
  }

  .related-designer-section .center.collection__view-all {
    margin-top: 25px !important;
  }

  .video-section1,
  .other-desc-section .image {
    margin: 1.6rem 0;
  }

  .deferred-media__poster-button {
    width: 45px !important;
    height: 45px !important;
  }

  .profile-section .designer-name {
    font-size: 18px !important;
  }

  .related-designer-section .blog_info p {
    font-size: 12px !important;
  }

  .alphabet-tabs a.tab {
    color: #d8d8d8;
  }

  .product__media-list {
    scroll-padding-left: 0 !important;
  }

  .alphabet-tabs a.active.tab:before,
  .alphabet-tabs a:hover:before {
    opacity: 0 !important;
    display: none;
  }

  .alphabet-tabs {
    position: absolute;
    top: calc(1.4rem + 2.4rem);
    right: 1.6rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 20px !important;
    align-items: center;
    justify-content: unset;
  }

  .main-blog-designer {
    position: relative;
  }



  .designer-list {
    width: 100%;
  }

  .letter-section h2 {
    margin: 0;
    margin-bottom: 1.6rem !important;
    font-size: 16px;
  }

  .designer-image.for-mobile-only {
    padding: 0;
  }

  .alphabet-tabs a.tab {
    height: auto !important;
    font-size: 12px;
  }

  .alphabet-tabs a.active.tab:before,
  .alphabet-tabs a:hover:before {
    display: none;
  }



  .alphabet-tabs.sticky {
    position: fixed !important;
    top: 20px !important;
    z-index: 1;
  }

  .product__media-list .slider.slider--mobile .slider__slide {
    border: 0 !important;
    margin: 0 !important;
  }

  .product__media-list .product-media-container.constrain-height {
    --constrained-min-height: 300px !important;
    aspect-ratio: 2 / 3 !important;
    min-height: unset !important;
  }

  .product__media-list .slider.slider--mobile {
    scroll-padding-left: 0;
  }

  section[id*="MainProduct-template"] {
    padding-top: 0;
  }

  .product__media-list.grid--peek.slider .grid__item:first-of-type {
    margin-left: 0;
  }


  .product__media-wrapper slider-component .slider-buttons {
    border: 0 !important;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  .product__media-wrapper slider-component .slider-counter__link {
    padding: 0.4rem;
  }

  .product__media-wrapper slider-component .slider-counter__link--dots .dot {
    background: #fff !important;
    border: 0 !important;
    opacity: 0.4 !important;
    width: 4px !important;
    height: 4px !important;
  }

  .product__media-wrapper slider-component .slider-counter__link--active.slider-counter__link--dots .dot {
    opacity: 1 !important;
    background: #ffff;
  }

  .product__media-wrapper slider-component .cst-arrow.slider-buttons {
    display: flex;
    justify-content: space-between;
    align-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .cst-arrow .slider-button {
    color: var(--primary) !important;
  }

  .cst-arrow .slider-button .icon {
    height: 15px !important;
  }

  .product__media-wrapper {
    overflow: hidden;
  }

  .page-width.page-width-md {
    padding: 0;
  }

  .template-product .fabs-images {
    margin-top: 16px !important;
  }

  .product__media-wrapper slider-component:not(.thumbnail-slider--no-slide) {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .contentIcon-content .heading {
    font-size: 1.4rem;
  }

  .product-form__submit {
    margin-bottom: 1.6rem !important;
  }

  .designer-description {
    margin-top: 9px;
    line-height: 1.5;
  }

  .product__accordion .designer-content .designer-name {
    font-size: 14px !important;
  }

  .product__accordion+.fabricIcon-section {
    margin-top: 26px !important;
  }

  .product__accordion .designer-content {
    gap: 5px !important;
  }

  .complete-look-products .carousel-progress {
    width: calc(100% - 1.6rem);
    margin-left: 0 !important;
  }

  .collection__view-all a:not(.link) {
    margin-top: 16px !important;
  }

  .product__accordion .accordion__content .designer-section {
    gap: 15px;
  }

  .template-product .fab-grid-details {
    margin-bottom: 0px !important;
  }

  .product__media-wrapper slider-component:after {
    content: "";
    width: 100%;
    display: block;
    height: 30px;
    position: absolute;
    bottom: 6px;
    background: linear-gradient(180deg,
        rgba(3, 28, 36, 0) 0%,
        rgba(3, 28, 36, 0.2) 100%);
  }

  .cst-dotst-details .slider.slider--mobile {
    margin-bottom: 0 !important;
  }

  .product-popup-modal__content {
    width: 100% !important;
  }

  .product-size-guide-tab .tabs {
    gap: 24px;
  }

  .cst-dotst-details .product__media-wrapper slider-component .slider-buttons {
    bottom: 15px;
  }

  .product__media-wrapper slider-component .slider-buttons {
    bottom: 10px;
  }

  .cst-modal .image-with-text__media {
    min-height: 257px;
  }

  .cst-modal .global-media-settings {
    border: 0;
  }

  .cst-modal .image-with-text__grid--reverse {
    flex-direction: row-reverse;
  }

  .cst-modal .image-with-text__content {
    padding: 15px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .cst-modal .table-responsive table:not([class]) td,
  .cst-modal table:not([class]) th {
    font-size: 12px;
    padding: 0.8rem !important;
  }

  .cst-modal .table-responsive tbody tr:nth-of-type(odd) {
    background-color: #fff;
  }

  .home-slideshow-json-section .banner__media.media:before,
  .home-slideshow-json-section .banner--adapt_image:before {
    padding-bottom: 150% !important;
    content: "";
    display: block;
  }

  .home-slideshow-json-section slideshow-component:after {
    content: "";
    width: 100%;
    display: block;
    height: 40px;
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(3, 28, 36, 0) 0%,
        rgba(3, 28, 36, 0.2) 100%);
  }

  .home-slideshow-json-section .slider__slide {
    min-height: 560px !important;
  }

  .collection.section-mobile-products_topicCollection-padding {
    padding: 40px 0;
    padding-top: 0;
  }

  .collection.section-mobile-products_topicCollection-padding+.collection.section-mobile-products_topicCollection-padding {
    padding-bottom: 20px !important;
  }

  .blog_info p {
    font-size: 12px !important;
  }

  .home-collection-products-with-banner-json-section .banner--adapt {
    aspect-ratio: 2 / 3 !important;
    min-height: unset !important;
  }

  /* .collection.section-mobile-products_topicCollection-padding .banner:after { background: linear-gradient(180deg, rgba(3, 28, 36, 0.00) 0%, rgba(3, 28, 36, 0.40) 100%) lightgray 50% / cover no-repeat; opacity: 0.2; } */
  .home-collection-products-json-section .grid,
  .home-collection-products-with-banner-json-section .grid,
  .template-index .product-grid {
    margin-top: 40px !important;
  }

  .home-collection-products-with-banner-json-section slider-component {
    margin-top: 16px !important;
  }

  .section-fabs-moment {
    margin-top: 15px !important;
  }

  .section-designer_banner {
    padding: 35px 0;
  }

  .alphabet-tabs a.active.tab,
  .alphabet-tabs a:hover {
    color: var(--primary) !important;
  }

  hr.dashed {
    margin: 2.4rem 0 !important;
  }

  .tips-care .img-holder {
    padding-bottom: 41%;
  }

  .product-specification-info .content {
    font-size: 14px !important;
  }

  .cst-modal .washList-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .product-size-guide-tab .tabs a {
    font-size: 14px;
  }

  .product-size-guide-tab .tabs a {
    font-weight: 400;
  }

  .product-size-guide-tab .tabs a.active {
    font-weight: 500;
  }

  .cst-modal .repeated:first-child .image-with-text .grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cst-modal .repeated:first-child .grid__item {
    width: 100%;
  }

  .cst-modal .repeated:first-child .image-with-text__media {
    min-height: 405px;
  }

  .cst-modal .repeated:first-child .image-with-text__content {
    padding: 0 !important;
    text-align: center;
  }

  .cart-notification__header,
  .cart-notification-product,
  .cart-notification__links {
    padding: 16px !important;
  }

  div#cart-notification {
    position: fixed !important;
    bottom: 0 !important;
  }

  body.notify-open {
    overflow: hidden !important;
  }

  body.notify-open:before {
    background-color: #000000;
    z-index: 1;
    content: " ";
    position: fixed;
    height: 100%;
    width: 100%;
    display: block !important;
    opacity: 0.5;
  }

  /* body.notify-open .shopify-section-group-header-group { z-index: 1; } */
  cart-notification {
    z-index: 2;
  }


  div#Slider-designer_list .img-holder {
    cursor: pointer;
  }

  div#cart-notification {
    bottom: 0 !important;
    width: 100% !important;
    left: 0 !important;
    max-width: 100% !important;
  }

  div#main-Slider-designer_list {
    padding-right: 1.6rem !important;
  }

  .page-title-borderd .title {
    margin-bottom: 0 !important;
    font-size: 18px;
  }

  .page-title-borderd {
    position: relative;
    padding: 24px 0;
  }

  .search__button .icon {
    height: 21px !important;
    width: 21px !important;
  }

  .addresses ul {
    margin-bottom: 0;
  }

  div#main-Slider-designer_list .carousel-cell .img-holder img {
    object-fit: cover !important;
  }

  div#main-Slider-designer_list {
    margin-bottom: 16px !important;
  }

  .template-customers-register .footer:before,
  .template-customers-login .footer:before,
  .template-article .footer:before,
  .template-collection .footer:before,
  .template-blog-designers .footer:before,
  .template-product .footer:before,
  .template-index .footer:before,
  .template-page-clothing-care-tips .footer:before {
    display: none;
  }

  .section-designer_banner-padding .content-section-custom .title {
    font-size: 24px;
  }

  .section-designer_banner {
    padding: 30px 0;
  }

  .home-collection-products-json-section .grid,
  .home-collection-products-with-banner-json-section .grid,
  .template-index .product-grid {
    margin-top: 16px !important;
  }

  .banner:not(.banner--mobile-bottom):not(.email-signup-banner) .banner__box {
    padding-left: 0 !important;
  }

  .collection.section-mobile-products_topicCollection-padding+.collection.section-mobile-products_topicCollection-padding {
    padding-bottom: 24px !important;
    padding-top: 0 !important;
  }

  .collection.section-mobile-products_topicCollection-padding {
    padding: 0 0 24px;
  }

  .template-index .fab-grid {
    margin-bottom: 0;
  }

  .contact__button button {
    min-width: 100%;
  }

  .footer__content-bottom-wrapper.page-width {
    padding-top: 10px !important;
  }

  .home-designer-list-json-section .carousel-progress {
    width: calc(100% - 1.6rem);
    margin-left: 0;
  }

  .mobile-facets__inner {
    max-width: 100% !important;
  }

  .contact__button {
    margin-bottom: 0 !important;
  }

  .first-video {
    padding-bottom: 100%;
  }

  .color-swatch-section .swatch-label {
    font-size: 10px !important;
  }

  .template-product .product__media-wrapper slider-component .slider__slide {
    padding-top: 0 !important;
  }

  .no-results.center {
    margin-top: 2.4rem !important;
  }

  .collection__title.title-wrapper--self-padded-tablet-down {
    padding: 0 1.6rem !important;
  }

  .template-index .section-designer_banner {
    padding-bottom: 24px !important;
    padding-top: 24px !important;
  }

  .collection__title.title-wrapper {
    margin-bottom: 2.5rem !important;
  }

  .template-page-clothing-care-tips h1 {
    position: relative;
    margin: 0;
  }

  .cart__dynamic-checkout-buttons,
  .cart__checkout-button {
    max-width: 100%;
  }

  .product-card-wrapper .card--standard>.card__content .card__information {
    display: flex;
    gap: 0px;
    flex-direction: column;
  }

  .product-card-wrapper .card--standard>.card__content .designer-name {
    margin-bottom: 0;
  }

  .product-card-wrapper .card-information>.price {
    margin-top: 4px !important;
  }

  .related-designer-section .carousel-progress {
    width: calc(100% - 1.6rem) !important;
  }

  .right-content table:not([class]) td,
  .right-content table:not([class]) th {
    padding: 0.4em;
  }

  .template-page-about .grid--2-col-tablet .grid__item {
    width: 100%;
  }

  .template-page-about .grid--gapless.grid {
    row-gap: 24px;
  }

  .template-page-about .image-with-text__content>*+* {
    margin-top: 16px;
  }

  .template-page-about .rich-text__wrapper {
    width: 100%;
  }

  /* .template-page-about .shopify-section.section [class$="color-background-1"] {
      padding-top: 24px !important;
      padding-bottom: 0  !important;
   }
   */
  .template-page-about .shopify-section.section [class$="color-background-1"][class|="section-template"] {
    padding-top: 24px !important;
    padding-bottom: 0 !important;
  }

  .template-page-about .image-with-text h2 {
    font-size: 24px !important;
  }

  .template-page-about .banner__box {
    padding: 4rem 3.5rem !important;
  }

  .template-page-about .banner:not(.banner--mobile-bottom):not(.email-signup-banner) .banner__box {
    padding: 4rem 3.5rem !important;
  }

  .template-page-about .banner--medium:not(.banner--mobile-bottom):not(.banner--adapt) .banner__content {
    aspect-ratio: 2 / 3 !important;
    min-height: unset !important;
  }

  .template-page-about .banner__content {
    align-items: center !important;
  }

  .newsletter-form__field-wrapper {
    max-width: unset !important;
  }

  .template-page-about .content-container--full-width {
    padding-bottom: 0 !important;
  }

  .announcement-bar__message {
    padding: 0.8rem 0;
  }

  .home-slideshow-json-section .banner__heading {
    font-size: 18px;
  }

  .home-slideshow-json-section .banner__text {
    font-size: 12px;
  }

  .home-collection-products-json-section .title-wrapper--no-top-margin>.title {
    font-size: 16px !important;
  }

  .home-collection-products-json-section .collection__title .title:not(:only-child) {
    margin-bottom: 0.8rem !important;
  }

  div#main-Slider-designer_list .img-holder:before {
    width: 32px;
    height: 32px;
  }

  .template-cart .cart-items td {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }

  .template-cart .cart-items .quantity-popover-container {
    padding-bottom: 0 !important;
  }

  .template-cart .cart-item {
    padding: 24px 0 !important;
    margin-bottom: 0 !important;
  }

  slider-component.page-width {
    padding: 0 1.6rem !important;
  }

  .fabric.cst-modal .content-2 .images-section {
    gap: 15px !important;
  }

  .cst-modal .image-with-text__media {
    padding-bottom: 0 !important;
  }

  .cst-modal .image-with-text .grid__item {
    width: calc(50% - 15px);
  }

  .cst-modal .image-with-text__content {
    padding: 0 !important;
  }

  .cst-modal .image-with-text__grid--reverse,
  .cst-modal .image-with-text .grid,
  .fabric.cst-modal .content-2 .images-section {
    gap: 16px;
  }

  .banner__heading {
    font-size: 18px;
  }

  .banner__text.rte.body {
    font-size: 12px;
    line-height: 16px;
  }

  .main-holder {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
  }

  .hot-spot.position-left-top x-popover.hot-spot-popover.popover {
    right: calc(100% - 16px) !important;
  }

  .hot-spot.position-left-top x-popover.hot-spot-popover.popover {
    top: unset !important;
    bottom: 25px !important;
  }

  .hot-spot.open .popover {
    transform: scale(1) !important;
  }

  x-popover.hot-spot-popover.popover {
    max-width: 220px !important;
  }

  .hot-spot.position-right-bottom x-popover.hot-spot-popover.popover {
    left: calc(100% - 16px) !important;
    top: unset !important;
    bottom: -40px !important;
  }

  .template-page-about .banner__heading {
    font-size: 30px !important;
  }

  .product-model-info .content-section ul.modeldesc-content:first-child {
    margin-top: 0;
  }

  .product-model-info .content-section {
    width: calc(100% - 130px);
  }

  .product-model-info .image-section {
    width: 130px;
  }

  .fabric.cst-modal .content-2 .images-section+.images-section {
    margin-top: 15px;
  }

  .announcement-bar__message {
    min-height: unset;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-100% - 1rem));
    }
  }

  .announcement-bar {
    overflow: unset;
  }

  .announcement-bar-section {
    overflow: hidden;
  }

  #scroll-element .announcement-bar__message {
    white-space: nowrap;
    line-height: 1;
  }

  .announcement-bar__message {
    min-height: unset;
  }

  .announcement-bar__message {
    text-align: right;
  }

  .announcement-bar__message {
    margin-left: 25px;
  }

  .letter-section {
    padding: 2.4rem 0;
  }

  .right-content .tab__content.rte {
    padding-bottom: 2.4rem;
  }

  .other-desc-section .content:last-child {
    margin-bottom: 0rem;
  }

  .designer-content-detail .image-gallery {
    margin-bottom: 0 !important;
  }

  .designer-content-detail {
    padding-bottom: 2.4rem !important;
  }

  .collection__title.title-wrapper {
    margin-bottom: 1.6rem !important;
  }

  .profile-section {
    padding-top: 0rem;
  }

  .template-page-clothing-care-tips h1 {
    position: relative;
    margin: 0;
    padding: 2.4rem 0;
  }

  .cst-modal .product-model-info .content-section {
    width: calc(100% - 130px);
  }

  .announcement-bar__message {
    padding: 18px 0;
  }

  .announcement-bar,
  .announcement-bar__announcement {
    display: table;
  }

  .home-collection-products-json-section,
  .home-collection-products-with-banner-json-section,
  .section-designer_banner,
  .home-gab-moment-json-section.section-fabs-moment {
    padding: 2.4rem 0;
    margin: 0 !important;
  }

  .shopify-section-group-footer-group .multicolumn .page-width {
    padding-top: 2.4rem !important;
  }

  .footer__column--info {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }

  .page-width.ft-btm {
    padding-top: 0 !important;
  }

  .product-card-wrapper .card--standard>.card__content .card__information {
    padding-top: 8px !important;
  }

  .product-card-wrapper .card__heading.h5 {
    line-height: 18px !important;
  }

  .shopify-section-group-footer-group .multicolumn-list p {
    line-height: 18px;
  }

  .banner__box .banner__heading+* {
    margin-top: 0.8rem !important;
  }

  .template-product .product__media-wrapper .slider-button.slider-button--prev {
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    position: absolute;
    align-items: center;
    z-index: 2 !important;
  }

  .template-product .product__media-wrapper .slider-button.slider-button--next {
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    position: absolute;
    align-items: center;
    z-index: 2 !important;
  }

  .clothe-title {
    font-size: 16px !important;
  }

  .footer-block.footer-block--menu .footer-block__heading {
    font-size: 14px !important;
  }

  .product-card-wrapper .card--standard>.card__content .card__information .designer-name {
    line-height: 14px !important;
  }

  .custom-section1 {
    padding-bottom: 2.4rem;
  }

  div#Slider-designer_list .blog_info p {
    margin-top: 8px !important;
    margin-bottom: 0 !important;
  }

  .home-designer-list-json-section .carousel-progress {
    margin-top: 16px !important;
  }

  .shopify-section-group-footer-group .multicolumn-list {
    gap: 24px;
  }

  .shopify-section-group-footer-group .multicolumn-card__info {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .footer-block__content.richtext p {
    margin-top: 0 !important;
  }

  .title,
  .title-wrapper-with-link {
    margin-bottom: 16px !important;
  }

  .footer-block.footer-block--menu .footer-block__heading {
    position: relative;
  }

  .footer-block.footer-block--menu .footer-block__heading {
    margin-bottom: 0 !important;
  }

  .footer-block__details-content {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }

  .footer__column--info {
    padding-right: 0 !important;
  }

  .footer__column--info {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }

  .footer__localization {
    padding-top: 0 !important;
  }

  .designer-content-detail .image-gallery .img-holder {
    padding-bottom: 150% !important;
  }

  .profile-section .designer-name {
    margin-bottom: 8px !important;
  }

  .designer-content-detail .designer-address,
  .designer-content-detail .designer-since,
  .designer-content-detail .designer-product-count {
    line-height: 16px;
    margin-bottom: 4px !important;
  }

  .collection__title .title {
    font-size: 18px !important;
  }

  .related-designer-section.content-container--full-width {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .related-designer-section .title-wrapper--no-top-margin>.title {
    font-size: 16px !important;
  }

  .designer-products .collection__title .title {
    font-size: 16px !important;
  }

  .designer-products .collection__title .title {
    margin-bottom: 8px !important;
  }

  .related-designer-section .designer-product-count a {
    font-size: 12px !important;
  }

  .related-designer-section .center.collection__view-all {
    margin-top: 0 !important;
  }

  .tab-menu.collapsible-content__wrapper {
    padding-bottom: 0 !important;
  }

  .fabricIcon-content .hover-content {
    width: calc(100% - 30px);
  }

  .fabricIcon-content .hover-content {
    bottom: 126px;
  }

  .banner__box>*+.banner__text p {
    font-size: 12px;
    line-height: 18px;
  }

  details.menu-opening .mobile-facets__close svg {
    height: 24px !important;
    width: 24px !important;
    padding: 4px;
  }

  .mobile-facets__header {
    padding: 15.5px 1.5rem !important;
  }

  details.menu-opening .mobile-facets__close {
    width: 24px !important;
    height: 40px !important;
    top: 4px;
    right: 16px;
  }

  .mobile-facets__summary svg {
    width: 24px !important;
    height: 24px !important;
    margin-left: 0;
    padding: 4px !important;
  }

  .mobile-facets__heading {
    line-height: 1;
  }

  .mobile-facets__arrow.no-js-hidden {
    line-height: 1;
    width: 40px !important;
    height: 40px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-facets__summary {
    padding: 16px !important;
  }

  .mobile-facets__close-button .icon-arrow {
    width: 24px !important;
    height: 24px !important;
    padding: 4px !important;
  }

  .mobile-facets__label {
    padding: 8px 0 !important;
  }

  .mobile-facets__close-button {
    padding: 1.2rem 1.5rem !important;
  }

  .mobile-facets__label .icon-checkmark {
    left: 1.5rem !important;
  }

  .active-facets__button--light .active-facets__button-inner {
    line-height: 1 !important;
    padding: 6px 8px !important;
  }

  .mobile-facets__sort .select .icon-caret {
    padding: 0 !important;
  }

  .cst-modal-header {
    padding: 1.2rem 1.6rem;
  }

  .cst-modal .product-popup-modal__toggle {
    width: 24px !important;
    height: 24px !important;
    padding: 5px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cst-modal-header .product-popup-modal__toggle .icon {
    width: 2.4rem !important;
    padding: 0 !important;
  }

  .cst-modal-header+.dashed {
    display: none !important;
  }

  .cst-modal .product-popup-modal__content {
    padding: 0;
  }

  .cst-modal .image-with-text__text.rte.body p {
    line-height: 18px;
    text-align: center;
  }

  .cst-modal .product-fabric-bg-section {
    padding: 2.4rem !important;
  }

  .product-washingCare-info {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .grid-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .product-specification-info {
    padding-left: 15px;
    padding-right: 15px;
  }

  .cst-modal .product-fabric-bg-section {
    aspect-ratio: 2 /3 !important;
  }

  hr.dashed {
    width: calc(100% - 30px);
    margin: 2.4rem auto 2.4rem !important;
  }

  .product__accordion+.fabricIcon-section {
    margin-bottom: 0 !important;
  }

  product-recommendations.related-products {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .related-products__heading {
    margin: 0 0 1.6rem !important;
  }


  .product__accordion+.fabricIcon-section {
    margin-bottom: 0 !important;
  }

  div#ProductAccordion-designer__main {
    padding-right: 0 !important;
  }

  .product__accordion+.fabricIcon-section {
    margin-top: 24px !important;
  }

  .fabs-section {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .fabs-section h2 {
    margin-top: 0 !important;
  }

  .cst-modal .product-model-info .image-section img {
    width: 120px !important;
    height: 180px !important;
  }

  a.link.link--text.list-menu__item.list-menu__item--link:before {
    bottom: 7px !important;
  }

  .home-designer-list-json-section {
    padding-top: 24px !important;
  }

  .section-designer_banner .collection__description {
    line-height: 16px;
  }

  .price {
    letter-spacing: 0;
  }

  .template-index .fab-grid {
    gap: 3px !important;
  }

  .footer-block__content {
    line-height: 18px;
  }

  .social-icon-section {
    margin-top: 24px !important;
  }

  .designer-product-count+.designer-description .description {
    line-height: 22px;
  }

  .other-desc-section .content {
    line-height: 22px;
  }

  .related-designer-section .blog_info p {
    line-height: 18px !important;
  }

  .product .slider.slider--mobile {
    margin-bottom: 0 !important;
  }

  .product__media-wrapper {
    line-height: 1 !important;
  }

  .template-product .product__media-wrapper slider-component .slider__slide {
    padding-bottom: 0 !important;
  }

  .product__media-wrapper slider-component:after {
    bottom: 0 !important;
  }

  .product__title h1 {
    line-height: 1.2;
    letter-spacing: -0.6000000238418579px;
  }

  .product__info-container {
    padding-top: 0 !important;
  }



  .product__info-wrapper .form__label {
    line-height: 1 !important;
  }

  /* .product-form__input input[type=radio]+label { padding: 5.5px  16px 5.5px 16px !important; line-height: 23px !important; margin-top: 0 !important; margin-bottom: 8px !important; margin-right: 8px !important; }
   .size-guide-popup-section { line-height: 1 !important; } */
  .product__info-container .product__description,
  .product__info-container .icon-with-text {
    margin: 1.6rem 0 !important;
  }

  .shopify-payment-button__button--unbranded {
    min-height: 4.4rem !important;
  }

  button.shopify-payment-button__button--unbranded {
    line-height: unset !important;
    min-height: unset !important;
  }

  .product__info-container .product-form .product-form__buttons button {
    min-height: 4.4rem !important;
  }

  .product__accordion+.fabricIcon-section .fabricIcon-content .heading {
    line-height: 16px !important;
  }

  .related-products__heading {
    font-size: 16px !important;
  }

  .product-fabric-bg-section .icons-content .heading {
    line-height: 18px;
  }

  .product-popup-modal__opener {
    line-height: 1 !important;
  }

  .product-specification-info .content {
    line-height: 22px;
  }

  .fabs-section .heading-section h2+p {
    margin-bottom: 0 !important;
    margin-top: 16px !important;
    line-height: 16px;
    font-size: 14px !important;
  }

  .fabs-section h2 {
    font-size: 16px;
  }

  .cst-modal .row-content .content .value {
    width: calc(100% / 5);
    min-width: unset;
    font-size: 11px !important;
  }

  .tips-care h3.size-18 {
    font-size: 16px !important;
    margin: 0 0 4px !important;
  }

  .tips-care .grid-content a {
    line-height: 1;
  }

  .product-model-info .content-section ul.modeldesc-content:last-child {
    margin-bottom: 0 !important;
  }

  .cst-modal ul.modeldesc-content li:last-child {
    margin-bottom: 0 !important;
  }

  .cst-modal .table-responsive table:not([class]) td,
  .cst-modal table:not([class]) th {
    white-space: normal;
  }

  .cst-modal .table-responsive table:not([class]) td,
  .cst-modal table:not([class]) th {
    padding: 12px 7px !important;
    line-height: 1 !important;
  }

  .cst-modal .table-responsive td.value.heading {
    font-size: 12px;
  }

  .cst-modal .table-responsive table {
    margin-bottom: 10px;
  }

  .product-measurment-section h2 {
    margin-bottom: 16px;
    margin-top: 0 !important;
  }

  .product__info-container .product-form .product-form__buttons .shopify-payment-button__more-options {
    font-size: 12px !important;
    min-height: unset !important;
  }

  .product__accordion .accordion__content .designer-image a:before {
    width: 24px !important;
    height: 24px !important;
    background-size: 11px !important;
  }

  .product__accordion .accordion__content ul.content {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .product__accordion .accordion__content .designer-section {
    margin-bottom: 16px !important;
  }

  .product__accordion .accordion__content {
    padding: 0 !important;
  }

  .product__accordion .accordion__content ul.content li:last-child {
    margin-bottom: 0 !important;
  }

  .product__accordion+.fabricIcon-section {
    margin-top: 10px !important;
  }

  .banner__content .banner__text.rte {
    line-height: 18px;
  }

  .banner__content .banner__text.rte {
    line-height: 18px;
    color: #ffff;
  }

  .left-content.for-mobile-only {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .contact__button {
    margin-top: 2.4rem !important;
  }

  .text-area {
    min-height: 12rem;
  }

  .template-page-faq .collapsible-content .accordion {
    margin-top: 0 !important;
  }

  .template-page-faq .collapsible-content .accordion+.accordion {
    margin-top: 16px !important;
  }

  .right-content .accordion summary {
    padding: 1.6rem 0;
  }

  .contact__button button {
    min-height: 44px !important;
  }

  .right-content .field__label {
    line-height: 1;
    letter-spacing: 0 !important;
    margin-bottom: 8px !important;
  }

  .right-content {
    margin-top: 24px !important;
  }

  .collection-hero__title {
    margin: 2.4rem 0 0 !important;
    font-size: 16px !important;
  }

  .right-content .accordion__content {
    padding-bottom: 0rem;
    margin-bottom: 1.6rem;
  }

  .cart-notification__header {
    padding: 11.5px 16px !important;
  }

  .cart-notification__heading {
    line-height: 23px;
  }

  .cart-notification-product {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }

  .cart-notification__links a {
    min-height: 4.2rem !important;
    line-height: 4.2rem !important;
  }

  .cart-notification__links {
    padding-top: 0 !important;
    padding-bottom: 24px !important;
  }

  .cart-notification-product__image+.cstdiv {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .cart-notification-product__image {
    margin-right: 1.6rem !important;
  }

  .cart__checkout-button {
    min-height: 44px !important;
  }

  a.cart-item__name {
    font-size: 12px !important;
    line-height: 16px;
  }

  .template-cart .cart-items .product-option {
    font-size: 12px;
  }

  .template-cart .cart-items dl .product-option {
    color: #999999;
  }

  .tax-note {
    margin: 1.6rem 0 1.6rem auto !important;
  }

  .designer-content-detail .designer-product-count {
    margin-bottom: 24px !important;
    line-height: 1;
  }

  .template-cart .cart__footer {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .template-cart .cart__items .price {
    font-size: 12px !important;
  }

  .product__info-container>.fabricIcon-section {
    padding-bottom: 0 !important;
  }

  .cst-modal-header .product-popup-modal__toggle .icon {
    padding: 0px;
  }

  .related-designer-section.content-container--full-width {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }

  .related-designer-section .center.collection__view-all {
    margin-top: 0 !important;
  }

  .related-designer-section .carousel-progress {
    margin-top: 16px !important;
  }

  .template-collection .js-load-more {
    margin-top: 16px !important;
  }

  .template-blog-fabs .fabs-list-section {
    padding-bottom: 2.4rem !important;
  }

  .template-blog-fabs .fabs-list-section .fab-grid {
    margin-bottom: 16px !important;
  }

  .cart__login-title {
    margin: 1.6rem 0 0rem !important;
    padding-top: 16px !important;
  }

  .predictive-search__heading {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .template-search--empty {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }

  div#Slider-designer_list .blog_info p {
    line-height: 18px !important;
  }

  .template-index div#Slider-designer_list .blog_info p {
    color: #999999;
  }

  .color-count {
    margin-top: 4px !important;
  }

  .menu-drawer__account {
    font-size: 14px !important;
    line-height: 1 !important;
    height: 44px !important;
    min-height: unset !important;
  }

  .template-product .designer-product-count+.designer-description .description {
    line-height: 18px;
  }

  .cart-notification__close {
    width: 2.4rem !important;
    height: 2.4rem !important;
    padding: 3px !important;
    margin-top: 0 !important;
  }

  a.cart-item__name {
    font-size: 12px !important;
  }

  .template-cart .cart__footer {
    padding: 2.4rem 0 !important;
  }

  .template-cart .collection__title .title {
    font-size: 16px !important;
  }

  .template-cart cart-items .title-wrapper-with-link {
    margin-bottom: 0 !important;
  }
}

@media screen and (min-width: 990px) {
  .header__heading-link {
    padding-right: 0 !important;
  }

  .header--middle-left .header__heading-link,
  .header--top-left .header__heading-link {
    margin-left: 0 !important;
    padding: 0;
  }

  .fabricIcon-content:hover .hover-content {
    visibility: visible;
    opacity: 1;
    display: block;
  }
}

@media (max-width: 767px) {
  .designer-content-detail.content-container--full-width {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .related-designer-section.content-container--full-width,
  .designer-products.content-container--full-width,
  .designer-content-detail.content-container--full-width .about-content {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }

  details.mobile-facets__details~.js-filter svg.icon-caret {
    right: 9px !important;
  }

  .collection-hero__text-wrapper h1.onlytitle:after {
    content: " ";
    display: block;
    width: 100%;
    height: 1px;
    background-image: url(dashed.svg);
    position: relative;
    transition: 0.3s;
    right: 0;
    border: 0 !important;
    top: 24px !important;
    outline: none !important;
    box-shadow: none !important;
    opacity: 0.3;
    bottom: 0;
  }

  .collection-hero__text-wrapper .collection-hero__description:after {
    content: " ";
    display: block;
    width: 100%;
    height: 1px;
    background-image: url(dashed.svg);
    position: relative;
    transition: 0.3s;
    right: 0;
    border: 0 !important;
    top: 24px !important;
    outline: none !important;
    box-shadow: none !important;
    opacity: 0.3;
    bottom: 0;
  }

  .related-designer-section .blog_info p {
    line-height: 16x !important;
  }

  .menu-drawer__menu-item .icon-arrow {
    right: 0px !important;
  }

  .mobile-facets__details summary:not(:last-child):after,
  .mobile-facets__details .mobile-facets__list:before {
    content: " ";
    display: block;
    width: 100%;
    height: 1px;
    background-image: url("dashed.svg");
    position: relative;
    transition: 0.3s;
    z-index: 1;
    right: 0;
    border: 0 !important;
    top: unset !important;
    outline: none !important;
    box-shadow: none !important;
    opacity: 0.2;
  }

  .header__icon .icon-close {
    width: 1.5rem;
    height: 1.5rem;
  }

  #shopify-section-template--22241919271231__main .related-designer-section .blog_info p {
    line-height: 16px !important;
  }

  .related-designer-section .collection__view-all a {
    position: relative;
    left: -0.8rem;
  }

  .mobile-facets__item label .icon-checkmark {
    left: 0px !important;
    top: 8px !important;
  }

  .search-modal {
    min-height: 60px;
  }

  .search__input.field__input {
    height: 44px !important;
  }

  .fab-grid {
    gap: 3px !important;
  }

  .right-content {
    max-width: 100%;
    width: 100% !important;
    margin-left: unset !important;
  }
}

.designer-product-count a:hover {
  color: #999 !important;
}

#Slider-related-designer .designer-product-count a:hover {
  color: #031c24 !important;
}

#Slider-related-designer .designer-product-count,
.designer-content-detail .designer-description,
.designer-content-detail,
.related-designer-section h2 {
  text-align: left;
}

.designer-name a {
  text-decoration: none;
}

.designer-name a:hover {
  text-decoration: underline !important;
}

.product-size-chart .size-chart-container {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.product-size-chart .size-chart {
  display: flex;
  flex-direction: row;
  min-width: 100%;
}

.product-size-chart .size-chart-body {
  display: flex;
  flex-direction: row;
  min-width: 100%;
}

.product-size-chart .size-chart-column {
  display: flex;
  flex: 1;
  font-size: 1.2rem;
  flex-direction: column;
}

.product-size-chart .size-chart-cell {
  height: 5rem;
  line-height: 5rem;
  padding: 0 1.4rem;
  text-align: center;
  min-width: 8rem;
  white-space: nowrap;
}

.product-size-chart .sticky-left {
  font-weight: 500;
  font-size: 1.4rem;
}

.product-size-chart .size-chart-column .size-chart-cell:nth-child(even) {
  background-color: #f6f6f6;
}

.product-size-chart .size-chart-column .size-chart-cell:nth-child(odd) {
  background-color: #edf0f0;
}

@media (min-width: 767px) {

  .left-content~.content-container--full-width,
  .color-background-1 .content-container--full-width {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .designer-content-detail .image-gallery .designer-profile-slider {
    position: sticky;
    top: 5.2rem;
  }
}

.slideshow__text .banner__buttons a:hover {
  background: #fff !important;
  color: #000 !important;
  border: 1px solid #fff !important;
}

.contact__button button:hover {
  opacity: 0.8 !important;
}

.contact .right-content .content-description {
  margin-top: 1.6rem;
}


.fabrique-goods-detail-cart-drawer-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3001;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  -webkit-overflow-scrolling: touch;
}

.fabrique-goods-detail-cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  z-index: 3001;
  display: flex;
  flex-direction: column;
  width: 46rem;
  height: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 16px 48px 16px rgba(0, 0, 0, 0.08),
    0px 12px 32px rgba(0, 0, 0, 0.12), 0px 8px 16px -8px rgba(0, 0, 0, 0.16);
  overflow-y: scroll;
  transition: all 0.3s;
}

.fabrique-goods-detail-cart-drawer_header-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2.4rem;
  border-bottom: 0.05rem solid #d8d8d8;
  box-sizing: border-box;
}

.fabrique-goods-detail-cart-drawer_header-title {
  font-size: 2.4rem;
  font-weight: 500;
}

.fabrique-goods-detail-cart-drawer_header-close {
  font-size: 3.2rem;
}

.fabrique-shopping-cart-drawer_header-free-shipping_yes {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 2.4rem;
  background-color: #e88c73;
  color: #fff;
}

.fabrique-shopping-cart-drawer_header-free-shipping_yes_text {
  flex: 1;
  line-height: 1.5;
}

.fabrique-shopping-cart-drawer_header-free-shipping_no {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 2.4rem;
  background-color: #edf0f0;
}

.fabrique-shopping-cart-drawer_header-free-shipping_no_text {
  flex: 1;
  line-height: 1.5;
}

.fabrique-goods-detail-cart-drawer_content-wrapper {
  flex: 1;
  overflow-y: scroll;
}

.cart-item-size-sale-tips {
  padding-left: 0.8rem;
  color: #fc296b;
}

.cart-item-shipping-time {
  color: #e88c73;
}

.fabrique-cart-product-ca-text{
  color: #999;
  font-size: 1.2rem;
}

.fabrique-goods-detail-cart-drawer_footer .fabrique-cart-product-ca-text{
  margin-top: 0.8rem;
  text-align: center;
}

.fabrique-goods-detail-cart-drawer_footer {
  padding: 1.6rem 2.4rem;
  padding-bottom: 1.2rem;
  box-shadow: 0px -0.8rem 1.6rem 0px rgba(0, 0, 0, 0.03);
}

.fabrique-goods-detail-cart-drawer_footer .estimated-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  line-height: 1.5;
}

.fabrique-goods-detail-cart-drawer_footer .checkout-clarification {
  padding-top: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.5;
}

.fabrique-goods-detail-cart-drawer_footer .discount-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
}

.fabrique-goods-detail-cart-drawer_footer .discount-item .discount-item-icon {
  display: flex;
  align-items: center;
}

.fabrique-cart-drawer-checkout {
  padding-top: 1.6rem;
}

.fabrique-goods-detail-cart-drawer_content-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5.2rem 0;
}

.fabrique-goods-detail-cart-drawer_content-empty-message {
  padding-top: 1.6rem;
  font-size: 14px;
}

.fabrique-goods-detail-cart-drawer_content-empty-button {
  width: 12rem;
  height: 3.6rem;
  margin-top: 1.6rem;
}

.fabrique-cart-drawer-you-may-also-like .fabrique-you-may-also-like {
  padding: 0;
  padding-top: 3.2rem;
}

.fabrique-cart-drawer-you-may-also-like .fabrique-you-may-also-like——title {
  padding: 0 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
}

.fabrique-cart-drawer-you-may-also-like .fabrique-you-may-also-like——list {
  display: flex;
  flex-wrap: nowrap;
  padding: 3.2rem 0;
  gap: 1.6rem;
  overflow-x: scroll;
}

.fabrique-cart-drawer-you-may-also-like .fabrique-you-may-also-like——list-item {
  flex: 0 0 16.4rem;
}

.fabrique-cart-drawer-you-may-also-like .fabrique-you-may-also-like——list-item:first-child {
  margin-left: 2.4rem;
}

.fabrique-cart-drawer-you-may-also-like .fabrique-you-may-also-like——list-item:last-child {
  margin-right: 2.4rem;
}

.fabrique-goods-detail-cart-drawer .fabrique-goods-detail-cart-drawer_footer_publicityIcons {
  padding-top: 1.6rem;
}



.icon-list .icons-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.slideshow__text-wrapper .slideshow__text .banner__text p {
  color: #ffffff;
}

.content-section-custom .center .text-link {
  text-decoration: underline;
}

.fabrique-goods-detail-size-tips-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2.4rem 0 1.6rem;
}

.fabrique-goods-detail-size-tips {
  display: none;
}

.fabrique-goods-detail-size-tips--show {
  display: block;
}

.fabrique-detail-subDesc {
  padding-top: 0.8rem;
}

.fabrique-detail-size-content {
  padding: 0.8rem 0;
  font-size: 1.2rem;
}

.fabrique-detail-size-content_combination_suggestion {
  display: none;
  color: #999;
  font-size: 1.2rem;
  margin: 0.8rem 0;
}

.fabrique-detail-size-content_item {
  display: none;
  overflow-x: auto;
}

.fabrique-detail-size-content_item--active {
  display: block;
}


.fabrique-detail-size-content_item_size-wrapper {
  display: flex;
}

.fabrique-detail-size-content_item_size {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 8rem;
  text-align: center;
}

.fabrique-detail-size-content_item-size_title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4rem;
  padding: 0 1rem;
  background-color: #edf0f0;
}

.fabrique-detail-size-content_item-size_value {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4rem;
  background: rgba(237, 240, 240, 0.5);
}

.fabrique-header-menu-item-wrapper {
  display: flex;
  justify-content: center;
  gap: 3.2rem;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5.2rem;
}

.fabrique-header-menu-item-links_view-all-designer {
  padding: 1.6rem 0;
  margin-top: 1.6rem;
  border-top: 0.05rem solid #d8d8d8;
  box-sizing: border-box;
  font-weight: 500;
}

.fabrique-header-menu-item-links_2 {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
}

.mega-menu-image-wrapper {
  flex: 0 0 50%;
  display: flex;
  justify-content: flex-end;
}

#cart-icon-bubble {
  display: flex;
}

.product__info-wrapper .designer-name {
  margin-top: 2.4rem;
  font-weight: 500;
}

.product__info-wrapper .product__title {
  padding-top: 0.4rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
}

.fabrique-goods-detail-price {
  margin: 2.4rem 0;
}

.product__info-wrapper .contentIcon-section {
  margin: 2.4rem 0;
}

.product__info-wrapper .fabric-information-popup-section {
  display: block;
  padding-top: 1.6rem;
  line-height: 1;
}

.product__info-wrapper .view-garment-craftsmanship {
  display: block;
  padding: 1.6rem 0;
  line-height: 1;
}

.fabrique-secondColor {
  font-size: 1.4rem;
}

.color-swatch-section .swatch .color-box img {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.5rem;
  margin: -0.1rem;
}

.color-box {
  padding: 2px;
  border: 1px solid #999 !important;
  border-radius: 4px;
  transition: 0.2s;
  position: relative;
  display: inline-block;
  line-height: 0 !important;
  position: relative;
  overflow: hidden;
}

/* 灰色斜线遮罩 */
.color-box.disabled::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 150%;
  /* 保证对角线够长 */
  background-color: #999;
  top: -25%;
  left: 50%;
  transform: rotate(-45deg);
  /* 斜线角度 */
  transform-origin: center;
  pointer-events: none;
  overflow: hidden;
}

.color-swatch-section .swatch .color-box.disabled img {
  opacity: 0.4;
  background: #fff;
}

.product__info-wrapper .color-swatch-section {
  margin: 2.4rem 0;
}

.product__info-wrapper .color-swatch-section .swatch-section {
  display: flex;
  gap: 1.2rem;
  height: auto;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1.2rem;
}


.fabrique-product-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  font-weight: 400;
  font-size: 1.4rem;
}

.fabrique-product-image-wrapper {
  position: relative;
}

.fabrique-product-box:hover .fabrique-product-image-secondary {
  opacity: 1;
}

.fabrique-product-box:hover .fabrique-product-video-secondary {
  opacity: 1;
}


.fabrique-product-box_show_quick_add:hover .fabrique-product-sold-out {
  opacity: 0;
}


@media (hover: hover) and (pointer: fine) {
  .fabrique-product-box_show_quick_add:hover .fabrique-product-sale {
    opacity: 0;
  }
}



.fabrique-product-box_show_quick_add:hover .fabrique-product-size-wrapper {
  opacity: 1;
}

.fabrique-product-box:hover .fabrique-product-market-img {
  display: none;
}

.fabrique-product-market-img {
  position: absolute;
  left: 0rem;
  top: 0rem;
  z-index: 1;
}


.fabrique-product-image {
  width: 100%;
  height: calc(100% / 2 * 3);
  aspect-ratio: 2 / 3;
}

.fabrique-product-image-secondary {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}


.fabrique-product-video-secondary {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fabrique-product-size-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0.8rem;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 1rem;
}

.fabrique-product-size-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.85);
}

.fabrique-product-size-item {
  position: relative;
  padding: 0.4rem 0.8rem;
  border: 0.05rem solid transparent;
  box-sizing: border-box;
}

.fabrique-product-size-item_available:hover {
  border-radius: 0.2rem;
  border: 0.05rem solid #031c24;
}

.fabrique-product-size-item_unavailable {
  text-decoration: line-through;
  color: #979797;
}

.fabrique-product-color-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0 0.8rem 0.8rem;
  background: rgba(255, 255, 255, 0.85);
}

fabrique-product-color-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem;
  border: 0.05rem solid transparent;
}

.fabrique-product-color-select {
  border-radius: 0.2rem;
  border: 0.05rem solid #031C24;
}

fabrique-product-color-item:hover {
  border-radius: 0.2rem;
  border: 0.05rem solid #031C24;
}



.fabrique-product-sold-out {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2rem;
  text-align: center;
  background: rgba(3, 28, 36, 0.4);
  color: #fff;
  font-size: 1.2rem;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fabrique-product-low-stock {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2rem;
  text-align: center;
  background: rgba(3, 28, 36, 0.4);
  color: #fff;
  font-size: 1.2rem;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fabrique-product-sale {
  position: absolute;
  right: 1.6rem;
  top: 1.6rem;
  font-size: 1.2rem;
  line-height: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.4rem;
  background-color: #e88c73;
  color: #fff;
  border-radius: 0.4rem;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.fabrique-product-designer-name {
  padding-top: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

.fabrique-product-brand-suffix {
  font-size: 1.2rem;
  line-height: 1.5;
}

.fabrique-product-title {
  padding-top: 0.2rem;
  line-height: 1.5;
}

.fabrique-product-color {
  padding-top: 0.2rem;
  color: #999;
  line-height: 1.5;
}

.fabrique-product-price {
  display: flex;
  padding-top: 0.2rem;
  line-height: 1.5;
  align-items: end;
}

.fabrique-product-price-iso-code {
  font-size: 1rem;
  padding-left: 0.2rem;
}

.fabrique-product-view-details {
  height: 2.8rem;
  padding: 0;
  margin-top: 1.6rem;
}

.fabrique-product-price_orange {
  color: #e88c73;
}

.fabrique-product-price_compare_at_price {
  color: #999;
  font-weight: 400;
  padding-left: 1.2rem;
}

.fabrique-product-price_compare_at_price-money {
  text-decoration-line: line-through;
}

.fabrique-backtop-icon {
  z-index: 2;
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background-color: #fff;
  color: #409eff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  opacity: 0;
  font-size: 3.2rem;
}

.fabrique-backtop-icon:hover {
  background-color: #f2f6fc;
}

#FacetsWrapperDesktop {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  height: 75vh;
  overflow: auto;
}

.fabrique-filters-list {
  flex: 1;
  overflow: auto;
}

.goods-details-section {
  padding: 1.6rem 0;
}

.goods-details-section_designOverview {
  padding-bottom: 1.6rem;
  line-height: 1.3;
}

.goodsDesc_type3 {
  text-decoration: underline;
}

.goods-details-section .content {
  margin: 0;
}

.size-fit-details-section {
  padding: 1.6rem 0;
}

.size-fit-details-section .content {
  margin: 0;
}

.fabrique-shopping-return_content {
  padding: 1.6rem 0 !important;
}

.fabrique-shopping-return_content .content {
  margin: 0;
}

.goods-details-section .content-limit_all {
  display: none;
}

.goods-details-section .content-button-limit_2 {
  display: none;
  text-decoration: underline;
  cursor: pointer;
  padding-top: 0.8rem;
}

.goods-details-section .content-button-limit_more {
  text-decoration: underline;
  cursor: pointer;
  padding-top: 0.8rem;
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  width: 100%;
  left: 0;
  height: 0.2rem;
  background: #edf0f0;
}

.swiper-scrollbar-drag {
  background-color: #031c24;
}

.fabrique-product-complete-look-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 3.2rem 0 0;
}

.fabrique-product-complete-look_title-mobile {
  display: none;
}


.fabrique-product-complete-look-swiper-scrollbar.swiper-scrollbar.swiper-scrollbar-horizontal {
  left: 5.2rem;
  width: calc(100% - 10.4rem);
}

.fabrique-product-complete-look-swiper .swiper-wrapper .swiper-slide {
  width: auto;
}

.fabrique-product-complete-look {
  display: flex;
}

.fabrique-product-complete-look_title-pc {
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 500;
}

.fabrique-product-complete-look_product-item {
  width: 31rem;
  margin-right: 3.2rem;
}



.fabrique-product-complete-look_product-image {
  width: 42.4rem;
  height: auto;
}

.fabrique-product-complete-look_product-item:first-child {
  margin-left: 5.2rem;
}

.fabrique-product-complete-look-image {
  width: 100%;
  height: 100%;
}


.fabrique-product-complete-look_product-item:last-child {
  margin-right: 5.2rem;
}


.fabrique-designer-more-list_swiper {
  padding: 3.2rem 0;
}

.fabrique-designer-more-list_swiper .swiper-wrapper .swiper-slide {
  width: auto;
}

.fabrique-designer-more-list_swiper .swiper-scrollbar {
  left: 5.2rem;
  width: calc(100% - 10.4rem);
}

.fabrique-designer-more-list_title {
  font-size: 2.4rem;
  font-weight: 500;
}

.fabrique-designer-more-list {
  display: flex;
}

.fabrique-designer-more-list_item {
  width: 19.6rem;
  margin-right: 3.2rem;
}


.fabrique-designer-more-list_item_image {
  width: 19.6rem;
  aspect-ratio: 2/3;
}

.fabrique-designer-more-list_item-address {
  display: flex;
  align-items: center;
  padding-top: 1.2rem;
  font-size: 1.2rem;
}

.fabrique-designer-more-list_item-designerName {
  padding-top: 0.4rem;
}

.fabrique-designer-more-list_item-signature {
  padding-top: 0.4rem;
  color: #999;
}

.fabrique-designer-more-list_item-product-count {
  font-size: 1.2rem;
  text-decoration: underline;
}

.fabrique-designer-more-list_more-button {
  width: 12rem;
  height: 3.6rem;
  margin: 0 auto;
}

.fabrique-header-menu-item-links_item {
  min-width: 19.6rem;
  max-width: 19.6rem;
}

.fabrique-header-menu-item_designer-wrapper {
  width: 100%;
  max-width: 88rem;
  box-sizing: border-box;
}

.fabrique-header-menu-item_designer-swiper {
  position: relative;
}

.fabrique-header-menu-item_designer_item {
  position: relative;
}

.fabrique-header-menu-item_designer-wrapper .fabrique-header-menu-item_designer_item.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.fabrique-header-menu-item_designer_item_image {
  width: 40.8rem;
  height: 26.7rem;
}

.fabrique-header-menu-item_designer_item_designer-image-wrapper {
  position: absolute;
  top: 9.8rem;
  left: 0;
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  background-color: #fff;
}

.fabrique-header-menu-item_designer_item_designer-image {
  width: 12rem;
  height: 18rem;
  aspect-ratio: 2/3;
}

.fabrique-header-menu-item_designer_item_designer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-top: 2.8rem;
}

.fabrique-header-menu-item_designer_item_designer-info-address {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}

.fabrique-header-menu-item_designer_item_designer-info-address_designerAddress {
  margin-left: 0.4rem;
}

.fabrique-header-menu-item_designer_item_designer-info-designerName {
  padding-top: 0.4rem;
}

.fabrique-header-menu-item_designer_item_designer-info-signature {
  padding-top: 0.4rem;
  font-size: 1.2rem;
  color: #999;
}

.fabrique-header-menu-item_designer-swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: static;
  background: transparent;
  padding: 0;
  padding-top: 3.2rem;
}

.fabrique-header-menu-item_designer-swiper .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  width: 0.4rem;
  height: 0.4rem;
  background-color: #031c24;
}

.fabrique-header-menu-item_designer-swiper .fabrique-swiper-button-prev {
  top: 13.6rem;
  left: 1.6rem;
}

.fabrique-header-menu-item_designer-swiper .fabrique-swiper-button-next {
  top: 13.6rem;
  right: 1.6rem;
}

.fabrique-header-menu-level-1-ul {
  align-items: center;
}

.fabrique-search-sortBy-select {
  text-align: right;
  letter-spacing: normal;
}

.fabrique-header-menu-level-2-wrapper {
  padding: 0.8rem 0;
}

.fabrique-header-menu-level-2::before {
  bottom: -0.8rem;
}

.fabrique-header-menu-level-3-li {
  padding: 0.8rem 0;
}

.fabrique-header-menu-level-3::before {
  bottom: -0.8rem;
}

.fabrique-header-menu-item_img_list {
  display: flex;
  gap: 0.8rem
}

.fabrique-header-menu-item-list-2-text {
  position: relative;
  display: inline-block;
  padding-bottom: 0.8rem;
}

.fabrique-header-menu-item-list-2-text::before {
  content: '';
  transform-origin: left;
  background-image: url(dashed-ov.svg);
  pointer-events: none;
  width: 100%;
  height: 1px;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  position: absolute;
  inset-block-end: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
}

.fabrique-header-menu-item-list-2:hover .fabrique-header-menu-item-list-2-text::before {
  transform: scaleX(1) !important;
  transform-origin: bottom left !important;
}


.fabrique-header-menu-item_list_image {
  width: 18rem;
  height: 27rem;
  aspect-ratio: 2/3;
}

.fabrique-header-menu-item-list-2-text {
  padding-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.5;
}



.fabrique-custom-image {
  width: 100%;
  height: 100%;
}

.fabrique-goods-detail-sale-tips {
  font-size: 1.2rem;
  padding-left: 0.8rem;
  color: #fc296b;
  font-weight: normal;
}

.fabrique-you-may-also-like {
  padding: 0 5.2rem;
  padding-top: 5.2rem;
}

.fabrique-you-may-also-like——title {
  font-size: 2.4rem;
  font-weight: 500;
}

.fabrique-you-may-also-like——list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
  padding-top: 3.2rem;
}

.fabrique-goods-detail-page-price-wrapper {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.fabrique-goods-detail-tax_taxText {
  padding-top: 1.6rem;
  font-size: 1.2rem;
  color: #999;
}

.fabrique-goods-detail-page-activity-wrapper {
  display: flex;
  align-items: center;
}

.fabrique-goods-detail-page-activity-sale {
  padding: 0 0.4rem;
  background-color: #e88c73;
  border-radius: 0.4rem;
  color: #fff;
}

.fabrique-goods-detail-page-activity-countdown {
  display: none;
  border-top-right-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
  background: rgba(232, 140, 115, 0.5);
  color: #fff;
  padding-left: 1.2rem;
  padding-right: 0.8rem;
  margin-left: -0.4rem;
}

.fabrique-collection-page-advertising-content-title {
  padding-top: 1.6rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}

.fabrique-collection-page-advertising-content-subtitle {
  padding-top: 0.4rem;
  line-height: 1.5;
}


.fabrique-goods-detail-page-marketing-text {
  text-underline-offset: 0.4rem;
}

.fabrique-shopping-cart-drawer_header-free-shipping {
  position: relative;
  height: 5.6rem;
  overflow: hidden;
}

 .fabrique-cart-drawer-announcement-1 {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  animation: anim1 5s linear infinite;
}

.fabrique-cart-drawer-announcement-2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.fabrique-cart-drawer-announcement-2--animation {
  top: 100%;
  animation: anim2 5s linear infinite;
}

@keyframes anim1 {
  0% {
    top: 0;
    opacity: 1;
  }

  45% {
    top: 0;
    opacity: 1;
  }

  50% {
    top: -100%;
    opacity: 0;
  }

  51% {
    top: 100%;
    opacity: 0;
  }

  95% {
    top: 100%;
    opacity: 1;
  }

  96% {
    opacity: 1;
  }

  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes anim2 {
  0% {
    top: 100%;
    opacity: 0;
  }

  45% {
    top: 100%;
    opacity: 0;
  }

  50% {
    top: 0;
    opacity: 1;
  }

  95% {
    top: 0;
    opacity: 1;
  }

  100% {
    top: -100%;
    opacity: 0;
  }
} 


.fabrique-home-designer-component-title {
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 500;
}

.fabrique-home-designer-component-view-all {
  padding-top: 0.8rem;
}

fabrique-video-preview {
  position: relative;
  display: block;
  cursor: pointer;
}

fabrique-video-preview::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 6rem;
  background-size: 6rem;
  background-image: url("play.svg");
  background-repeat: no-repeat;
  pointer-events: none;
}

.fabrique-designer-card-wrapper {
  width: 100%;
}

.fabrique-designer-card-link {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 150%;
}

.fabrique-designer-card-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.fabrique-designer-card-address {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-top: 1.2rem;
  font-size: 1.2rem;
}

.fabrique-designer-card-designerName {
  padding-top: 0.4rem;
}

.fabrique-designer-card-signature {
  padding-top: 0.4rem;
  color: #999;
}

.fabrique-designer-card-product-count {
  padding-top: 0.4rem;
  font-size: 1.2rem;
  text-decoration: underline;
}

.fabrique-404-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5.2rem;
}

.fabrique-404-title {
  padding-top: 1.6rem;
  font-size: 1.6rem;
  font-weight: 500;
}

.fabrique-404-desc {
  padding-top: 0.8rem;
}

.fabrique-404-return-to-homepage {
  width: 15rem;
  margin-top: 5.2rem;
}

.fabrique-404-collection-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 0 5.2rem;
}

.fabrique-404-collection-title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.3;
}

.fabrique-404-collection-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
}

.klaviyo-button-class {
  font-size: 1.4rem;
}

.fabrique-spuProps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding-top: 3.2rem;
}

.fabrique-spuProps-valuesList {
  display: flex;
  gap: 0.6rem;
}

.fabrique-spuProps-valuesList-first {
  font-weight: 500;
}

.fabrique-spuProps-valuesList-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fabrique-spuProps-valuesList-item-line {
  width: 100%;
  height: 0.6rem;
  margin: 0.8rem;
  background-color: #e88c73;
}

.fabrique-spuProps-valuesList-item-name {
  color: #999;
  text-align: center;
}

.fabrique-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.2rem;
  height: 7.6rem;
  padding: 0 5.2rem;
  box-sizing: border-box;
}

.fabrique-header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.fabrique-header-menu-nav-pc {
  flex: 1;
}

.fabrique-main-collection-right-wrapper {
  flex: 1;
}

.customcollectionDetail-0 {
  margin-top: 5.2rem;
}

.fabrique-sort-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fabrique-sort-product-count {
  color: #999;
  font-size: 1.6rem
}

.fabrique-sort-right-wrapper {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  font-size: 1.6rem;
}

.fabrique-sort-right-view-model {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}

.fabrique-sort {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  padding: 2.4rem 0;
}

.fabrique-sort:hover .fabrique-sort-select-wrapper {
  display: block;
  transition: all 0.3s ease;
}

.fabrique-sort:hover>svg {
  transform: rotate(180deg);
  transition: all 0.3s ease;
}

.fabrique-sort-select-wrapper {
  display: none;
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(100%);
  background: #fff;
  box-shadow: 0px 0.8rem 1.6rem 0px rgba(0, 0, 0, 0.04);
  width: 20rem;
}

.fabrique-sort-select {
  display: flex;
  flex-direction: column;
}

fabrique-sort-item {
  display: block;
}

.fabrique-sort-select-item {
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
}

.fabrique-sort-select-item--active {
  background-color: #edf0f0;
}

.fabrique-load-mord-product-list {
  padding: 3.2rem 0;
}

.fabrique-sort-wrapper-h5 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem;
}

.fabrique-sort-h5 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}

.fabrique-sort-h5>svg {
  transition: all 0.3s ease;
}

.fabrique-sort-h5-label {
  font-weight: 500;
}

.fabrique-sort-select-wrapper-h5 {
  display: none;
  z-index: 1;
  position: absolute;
  bottom: -3.2rem;
  right: 0;
  transform: translateY(100%);
  background: #fff;
  width: calc(100vw - 3.2rem);
}

.facets-vertical {
  display: flex;
  gap: 3.2rem;
}

.medium-hide {
  display: none;
}

.main-collection-filters {
  display: none;
}

.fabrique-filter {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  padding: 2.4rem 0;
}

.fabrique-filter:hover .fabrique-filter-select-wrapper {
  display: block;
  transition: all 0.3s ease;
}

.fabrique-filter:hover>svg {
  transform: rotate(180deg);
  transition: all 0.3s ease;
}

.fabrique-filter-select-wrapper {
  display: none;
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(100%);
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: auto
}

.fabrique-filter-select-wrapper #FacetsWrapperDesktop {
  height: 70.7rem;
  width: 26.2rem;
}

.collection .fabrique-filter-select-wrapper facet-filters-form {
  margin-bottom: 0;
}

.fabrique-menu-drawer-wrapper {
  display: none;
  align-items: center;
  gap: 1.6rem;
}





.designer-image::before {
  width: 3.2rem;
  height: 3.2rem;
  background-size: 3.2rem;
  left: 1.6rem;
  top: 1.6rem;
  transform: none;
}

.earth-svh {
  font-size: 2rem;
}

header-drawer {
  display: none;
}

fabrique-localization-header-icon {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}

fabrique-localization-dialog {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  margin: 0;
}

.fabrique-localization-dialog-mask {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.fabrique-localization-dialog-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65.2rem;
  height: 65.2rem;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  box-sizing: border-box;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2),
    0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12);
  overflow: auto;
  outline: 0;
  box-sizing: border-box;
}

.fabrique-localization-dialog-content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem;
  font-size: 1.6rem;
  font-weight: 500;
}

.fabrique-localization-dialog-close {
  cursor: pointer;
}

.fabrique-localization-dialog-content-current-country-wrapper {
  padding: 1.6rem 0;
  margin: 0 1.6rem;
}

.fabrique-localization-dialog-content-current-country {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.6rem;
  font-weight: 500;
}

.fabrique-localization-dialog-content-country-list {
  flex: 1;
  overflow: auto;
}

.fabrique-localization-dialog-content-country {
  padding-bottom: 1.6rem;
}

.fabrique-localization-dialog-content-header {
  padding: 1.6rem;
}

.fabrique-localization-dialog-content-country-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem;
  cursor: pointer;
}

.fabrique-localization-dialog-content-country-list-item:hover {
  background: #edf0f0;
}

.fabrique-localization-dialog-content-name {
  display: flex;
  align-items: center;
}

.fabrique-localization-dialog-content-name img {
  margin-right: 0.8rem;
  width: 1.4rem;
  height: 1.4rem;
}

.footer__content-top {
  padding: 5.2rem;
}

.fabrique-h5 {
  display: none;
}

.section-header {
  background-color: #fff;
  transition: all 0.3s;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.section-header--index {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: transparent;
  color: #fff;
  border-bottom: none;
}


.section-header--hover {
  background-color: #fff !important;
  color: #031C24 !important;
}

.section-header--scroll {
  background-color: #fff !important;
  color: #031C24 !important;
}

.section-header--index .fabrique-header {
  border-bottom: none;
}

.fabrique-registerForm-rewards {
  margin-bottom: 2.4rem;
  color: #999;
  display: flex;
  justify-content: center;
  margin-left: -2rem;
  font-size: 1.2rem;
}

.fabrique-Rewards-receive {
  text-decoration: underline;
  cursor: pointer;
}

.fabrique-registerForm-rewards input[type="checkbox"] {
  position: relative;
  width: 2rem;
  height: 2rem;
  left: 2rem;
  opacity: 0;
  z-index: 120;
}

.fabrique-registerForm-rewards label {
  position: relative;
  z-index: 101;
  cursor: pointer;
  display: inline-block;
  padding-left: 3rem;
}

/* 创建自定义复选框 */
.fabrique-registerForm-rewards label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  z-index: -1;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* 选中时的勾选图标 */
.fabrique-registerForm-rewards input[type="checkbox"]:checked+label::after {
  content: '';
  background-image: url(defaultCheck.svg);
  pointer-events: none;
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  left: 0rem;
  top: 0rem;
}

.fabrique-mail-subscription {
  cursor: pointer;
  display: none;
}

.fabrique-mail-subscription-dialog {
  z-index: 2000;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fabrique-mail-subscription-dialog_mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(0 0 0 / 50%);
}

.fabrique-mail-subscription-content {
  padding: 3.2rem;
  width: 42.3rem;
  background: #fff;
  position: absolute;
  text-align: center;
  font-size: 1.4rem;
  color: #031C24;
  line-height: 2.1rem;
}

.fabrique-mail-subscription-content-button {
  width: 100%;
  height: 4.3rem;
  line-height: 4.3rem;
  margin-top: 3.2rem;
  border-radius: 0.4rem;
  border: 1px solid var(--031c24, #031C24);
}

sticky-header[data-template="page.rivo-loyalty-landing-page"] {
  background: #ffffff;
}

.fabrique-goods-detail-wrapper_images0 {
  position: relative;
}

.fabrique-goods-detail-wrapper_images0 img {
  width: 100%;
  height: 100%;
}



fabrique-try-on-icon {
  display: none;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  color: #fff;
  background: rgba(3, 28, 36, 0.30);
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  z-index: 1;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
}

fabrique-try-on-icon svg {
  width: 1.8rem;
  height: 1.6rem;
}

fabrique-try-on-icon span {
  font-size: 1.2rem;
}

.fabrique-product-box fabrique-try-on-icon svg {
  width: 2.0rem;
  height: 2.0rem;
}

.fabrique-product-box fabrique-try-on-icon span {
  font-size: 1.4rem;
}

.fabrique-prouduct-try-on fabrique-try-on-icon {
  top: 21.4rem;
  right: 2rem;
  position: fixed;
  z-index: 100;
  padding: 1.8rem 2.6rem;

}

.fabrique-prouduct-try-on fabrique-try-on-icon span {
  font-size: 2rem;
}

.fabrique-prouduct-try-on fabrique-try-on-icon svg {
  width: 2.8rem;
  height: 2.8rem;
}

fabrique-try-on-dialog {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  margin: 0;
}

.fabrique-try-on-dialog-mask {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.fabrique-try-on-dialog-content {
  position: absolute;
  width: 100%;
  max-width: 133.6rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  max-height: 90vh;
  box-sizing: border-box;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  overflow: auto;
  box-sizing: border-box;
  padding: 1.6rem 3.2rem 3.2rem;
}

.fabrique-try-on-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
}

.fabrique-try-on-dialog-head::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.1rem;
  background-image: url(dashed.svg);
  background-color: transparent;
  opacity: 0.2;
}

.fabrique-try-on-dialog-close {
  cursor: pointer;
}

.fabrique-try-on-dialog-des {
  margin: 1.6rem 0;
}

.fabrique-try-on-dialog-des .fabrique-try-on-dialog-mobile-Model-des-title {
  font-size: 1.4rem;
  font-weight: 500;
}

.fabrique-try-on-dialog-des p {
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}

.fabrique-try-on-dialog-content-list {
  display: flex;
  gap: 3.2rem;
}

.fabrique-try-on-dialog-content-Model,
.fabrique-try-on-dialog-upload,
.fabrique-try-on-dialog-content-generating {
  max-width: 28rem;
  flex: 1;
  aspect-ratio: 2 / 3;
}

.fabrique-try-on-dialog-content-Model img {
  width: 100%;
  height: 100%;
}

.fabrique-try-on-dialog-upload-content {
  width: 100%;
  aspect-ratio: 2 / 3;
  background: #EDF0F0;
  cursor: pointer;
  color: #999999;
}

.fabrique-try-on-dialog-upload-content .fabrique-try-on-dialog-upload-action {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  cursor: pointer;
}

.fabrique-try-on-dialog-upload-img,
.fabrique-try-on-dialog-generating-results {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fabrique-try-on-dialog-upload-img img,
.fabrique-try-on-dialog-generating-results img {
  max-width: 100%;
  max-height: 100%;
}

.fabrique-try-on-dialog-generating-results #fabrique-try-on-dialog-generating-download-action {
  width: 2.5rem;
  height: 2.9rem
}

.fabrique-try-on-dialog-upload-delete-icon,
.fabrique-try-on-dialog-generating-download {
  position: absolute;
  width: 100%;
  height: 4.5rem;
  top: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(180deg, #000 -168.89%, rgba(0, 0, 0, 0.00) 100%);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
}

.fabrique-try-on-dialog-upload-delete-icon svg,
.fabrique-try-on-dialog-generating-download img {
  margin-right: 0.8rem;
  cursor: pointer;
}

.fabrique-try-on-dialog-upload-img-mask,
.fabrique-try-on-dialog-generating-mask,
.fabrique-try-on-dialog-generating-error {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.fabrique-try-on-dialog-generating-mask {
  background: rgb(225 225 225 / 10%);
  backdrop-filter: blur(10px);
}

.fabrique-try-on-dialog-generating-error {
  color: #FFF;
  line-height: 150%;
  text-align: center;
  backdrop-filter: blur(10px);
}

.fabrique-try-on-dialog-generating-error-des {
  font-size: 1.4rem;
}

.fabrique-try-on-dialog-generating-error-delete {
  padding: 3.2rem;
  cursor: pointer;
  text-decoration: underline;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.fabrique-try-on-dialog-upload-loading svg,
.fabrique-try-on-dialog-generating-loading svg {
  animation: spin 1s linear infinite;
}


.fabrique-try-on-dialog-content-upload-des {
  margin-top: 1.6rem;
  color: #999;
}

.fabrique-try-on-dialog-content-generating {
  width: 100%;
  aspect-ratio: 2 / 3;
  background: #EDF0F0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #999999;
}

.fabrique-try-on-svg {
  height: 4rem;
}

.fabrique-try-on-dialog-content-generating-text img {
  margin: 0 auto 0.8rem;
  height: 5.5rem;
}


.fabrique-try-on-dialog-action {
  flex: 1;
  display: flex;
  align-items: center;
}

.fabrique-try-on-dialog-action-pc {
  display: flex;
}

.fabrique-try-on-dialog-action-mobile {
  display: none;
}

.fabrique-try-on-dialog-action-box {
  width: 100%;
}

.fabrique-try-on-dialog-action-box .fabrique-try-on-dialog-des p {
  color: #999;
}

.fabrique-try-on-dialog-action-button {
  padding-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fabrique-try-on-dialog-action .fabrique-try-on-dialog-button {
  width: 12rem;
  height: 3.6rem;
  background: #fff;
  border: 1px solid #031C24;
  color: #031C24;
  cursor: pointer;
  border-radius: 0.4rem;

}

.fabrique-try-on-dialog-action .fabrique-try-on-dialog-button:disabled {
  border-color: transparent;
  background: #EDF0F0;
  color: #999;
}

.fabrique-try-on-dialog-action .fabrique-try-on-dialog-button-delete {
  padding: 0.9rem 1.6rem;
  background: #fff;
  border: 1px solid #031C24;
  cursor: pointer;
  border-radius: 0.4rem;
  color: #031C24;
}


.fabrique-try-on-dialog-mobile-Model {
  display: flex;
  margin: 2.4rem 0;
  display: none;
}

.fabrique-try-on-dialog-mobile-Model-img {
  width: 7.7rem;
  height: 11.4rem;
  margin-right: 1.6rem;
}

.fabrique-try-on-dialog-mobile-Model-img img {
  width: 100%;
  height: 100%;
}

.fabrique-try-on-dialog-mobile-Model-des .fabrique-try-on-dialog-mobile-Model-des-title {
  font-size: 1.4rem;
  font-weight: 500;
}

.fabrique-try-on-dialog-mobile-Model-des p {
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}

.fabrique-try-on-dialog-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(3 28 36 / 70%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  z-index: 1000;
  text-align: center;
}

.fabrique-try-on-dialog-toast.show {
  opacity: 1;
  bottom: 50%;
}

.wallet-cart-button-container {
  margin: 0 !important;
}

/* 右下角固定插件展示的层级 */
#launcher-wrapper {
  z-index: 100 !important;
}

@media screen and (max-width: 989px) {
  .fabrique-header-logo {
    flex: 1;
  }
}

.search-modal__content .search-modal-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  position: relative;
  margin: 5.2rem 0 3.2rem;
}

.predictive-search__loading-state {
  max-width: 4rem;
}

.search-modal-popular {
  margin-bottom: 5.2rem;
}

.search-modal-popular .search-modal-popular-title {
  padding: 1rem;
  color: #031C24;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.4rem;
}

.search-modal-popular .search-modal-popular-list {
  display: flex;
  gap: 1.6rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.search-modal-popular-list .search-modal-popular-jumpUrl {
  font-size: 1.2rem;
  color: #031C24;
  line-height: 2rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.2rem;
  border: 0.5px solid #D8D8D8;
}

.search-modal__content .search-input-wrapper {
  position: relative;
  width: 100%;
}

.search-modal__content .search-input {
  width: 100%;
  padding: 10px;
  background: transparent;
  position: relative;
  z-index: 2;
}

.search-modal__content .preset-words-container {
  position: absolute;
  top: 0;
  left: 4.8rem;
  width: calc(100% - 9.2rem);
  height: 100%;
  padding-left: 1.5rem;
  color: #999;
  z-index: 1;
  pointer-events: none;
  /* 确保点击可以穿透到input */
}

.search-modal__content .preset-word {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  /* 防止点击干扰输入框 */
}

.search-modal__content .preset-word.active {
  opacity: 1;
}

.fabrique-goods-detail-login-guide-wrapper {
  padding-top: 1.6rem;
}

.fabrique-cart-drawer-login-guide-wrapper {
  padding: 0 2.4rem;
  padding-top: 1.6rem;
}

ul#product-grid.grid--4-col-desktop .advertising_item_li_2 {
  width: calc(50% - var(--grid-desktop-horizontal-spacing) * 1 / 2) !important;
  max-width: calc(50% - var(--grid-desktop-horizontal-spacing) * 1 / 2) !important;
}


@media screen and (max-width: 767px) {

  .fabrique-page-width {
    padding: 2.4rem 0;
  }

  .swiper-pagination-bullets.swiper-pagination-horizontal {
    padding: 1.6rem 0;
  }

  .swiper-pagination-bullet {
    width: 0.4rem;
    height: 0.4rem;
  }

  .fabrique-goods-detail-cart-drawer {
    width: 31.5rem;
  }

  .fabrique-goods-detail-cart-drawer_header-title-wrapper {
    padding: 1.2rem 1.6rem;
  }

  .fabrique-goods-detail-cart-drawer_header-title {
    font-size: 1.6rem;
  }

  .fabrique-shopping-cart-drawer_header-free-shipping_yes {
    padding: 0 1.6rem;
  }

  .fabrique-shopping-cart-drawer_header-free-shipping_no {
    padding: 0 1.6rem;
  }

  .fabrique-goods-detail-cart-drawer_header-close {
    font-size: 2.4rem;
  }

  .fabrique-goods-detail-cart-drawer_footer {
    padding: 1.6rem;
  }

  .fabrique-goods-detail-cart-drawer_content-empty {
    padding: 2.4rem 0;
  }

  .fabrique-cart-drawer-you-may-also-like .fabrique-you-may-also-like {
    padding: 2.4rem 0;
  }

  .fabrique-cart-drawer-you-may-also-like .fabrique-you-may-also-like——list {
    padding-top: 2.4rem;
  }

  .fabrique-cart-drawer-you-may-also-like .fabrique-you-may-also-like——list-item:first-child {
    margin-left: 1.5rem;
  }

  .fabrique-cart-drawer-you-may-also-like .fabrique-you-may-also-like——list-item:last-child {
    margin-right: 1.5rem;
  }



  .fabrique-goods-detail-buy-button-position {
    z-index: 2;
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 1.6rem;
    margin: 0;
    box-sizing: border-box;
    background: #ffffff;
    box-shadow: 0px -0.4rem 0.8rem 0px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86);
    opacity: 1;
  }

  .fabrique-goods-detail-buy-button-position .detail-form {
    margin-bottom: 0 !important;
  }

  .fabrique-goods-detail-buy-button-position .detail-form .product-form__buttons {
    max-width: 100%;
  }

  .fabrique-goods-detail-buy-button-position .detail-form .product-form__submit {
    margin-bottom: 0 !important;
    height: 4.4rem !important;
    font-size: 1.4rem !important;
    text-transform: uppercase;
    letter-spacing: -0.04rem;
  }


  .product__info-wrapper {
    padding: 0 1.6rem;
  }

  .product__info-wrapper .product__title {
    font-size: 1.8rem;
  }


  .fabrique-detail-size-content_item {
    margin-top: 0;
  }

  .fabrique-product-image-secondary {
    display: none;
  }

  .fabrique-product-size-wrapper {
    display: none;
  }

  .fabrique-product-complete-look_title-mobile {
    display: block;
    padding: 0 1.6rem;
    font-size: 1.6rem;
    font-weight: 500;
  }

  .fabrique-product-complete-look_title-pc {
    display: none;
  }

  .fabrique-product-complete-look-container {
    padding: 1.6rem 0 0;
  }



  .fabrique-product-complete-look_product-item {
    width: 16.4rem;
    margin-right: 0.8rem;
  }


  .fabrique-product-complete-look_product-image {
    width: 21rem;
  }

  .fabrique-product-complete-look_product-item:first-child {
    margin-left: 1.6rem;
  }

  .fabrique-product-complete-look_product-item:last-child {
    margin-right: 1.6rem;
  }

  .fabrique-product-complete-look-swiper-scrollbar.swiper-scrollbar.swiper-scrollbar-horizontal {
    left: 1.6rem;
    width: calc(100% - 3.2rem);
  }

  .fabrique-designer-more-list_title {
    padding: 0 1.6rem;
    font-size: 1.6rem;
  }

  .fabrique-designer-more-list_swiper {
    padding: 2.4rem 0;
  }

  .fabrique-designer-more-list_swiper .swiper-scrollbar {
    left: 1.6rem;
    width: calc(100% - 3.2rem);
  }

  .fabrique-designer-more-list_item {
    width: 16.4rem;
    margin-right: 0.8rem;
  }

  .fabrique-designer-more-list_item:first-child {
    margin-left: 1.6rem;
  }


  .fabrique-designer-more-list_item_image {
    width: 16.4rem;
    height: 24.6rem;
  }

  .fabrique-designer-more-list_more-button {
    margin-top: 1.6rem;
  }

  .fabrique-header-menu-item_designer-mobile-swiper {
    padding-bottom: 1.6rem;
  }

  .fabrique-header-menu-item_designer-mobile-swiper .swiper-scrollbar {
    left: 1.6rem;
    width: calc(100vw - 3.2rem);
  }

  .fabrique-header-menu-item_designer-wrapper {
    padding: 2.4rem 0;
    max-width: none;
  }

  .fabrique-header-menu-item_designer-swiper-wrapper_swiper-slide {
    width: auto;
  }

  .fabrique-header-menu-mobile_designer-more-list {
    display: flex;
  }

  .fabrique-header-menu-mobile_designer-more-list .fabrique-header-menu-item_designer_item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 19.6rem;
    margin-right: 0.8rem;
  }

  .fabrique-header-menu-mobile_designer-more-list .fabrique-header-menu-item_designer_item:first-child {
    margin-left: 1.6rem;
  }

  .fabrique-header-menu-mobile_designer-more-list .fabrique-header-menu-item_designer_item:last-child {
    margin-right: 1.6rem;
  }

  .fabrique-header-menu-item_designer_item_image {
    width: 18rem;
    height: 27.8rem;
  }

  .fabrique-header-menu-item_designer_item_designer-image {
    width: 9.6rem;
    height: 14.4rem;
  }

  .fabrique-header-menu-item_designer_item_designer-info {
    padding-top: 0.8rem;
  }

  .fabrique-header-menu-item_designer_item_designer-image-wrapper {
    top: 15rem;
    left: 0;
  }

  .fabrique-header-menu-item_designer_item_designer-info {
    padding-top: 2.4rem;
  }

  .fabrique-header-menu-item_list_image {
    width: 16rem;
    height: 24rem;
    aspect-ratio: 2/3;
  }

  .fabrique-header-menu-item-img-mobile-swiper {
    padding: 0.8rem 1.6rem
  }

  .fabrique-header-menu-item_img_list {
    gap: 0;
  }

  .fabrique-header-menu-item_img_list .fabrique-header-menu-item-list-2 {
    width: auto;
  }


  .fabrique-swiper-button-prev {
    left: 1.6rem;
  }

  .fabrique-swiper-button-next {
    right: 1.6rem;
  }

  .fabrique-goods-detail-container {
    padding-top: 0;
  }

  .fabrique-product-image-wrapper_show_quick_add:hover .fabrique-product-sold-out {
    opacity: 1;
  }

  .fabrique-product-image-wrapper_show_quick_add:hover .fabrique-product-sale {
    opacity: 1;
  }

  .fabrique-you-may-also-like——title {
    padding: 0 1.6rem;
    font-size: 1.6rem;
  }

  .fabrique-you-may-also-like——list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    padding: 0 1.6rem;
    padding-top: 1.6rem;
  }

  .fabrique-collection-page-advertising-content-title {
    padding-top: 0.8rem;
    font-size: 1.6rem;
  }

  .fabrique-collection-page-advertising-content-subtitle {
    font-size: 1.2rem;
  }


  .fabrique-goods-detail-cart-drawer_footer .checkout-clarification {
    padding-top: 0.4rem;
  }

  .fabrique-cart-drawer-checkout {
    padding-top: 0.8rem;
  }

  .fabrique-404-return-to-homepage {
    margin-top: 1.6rem;
  }

  .fabrique-404-collection-wrapper {
    gap: 1.6rem;
    padding: 0 1.6rem;
  }

  .fabrique-404-collection-title {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .fabrique-404-collection-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }

  .fabrique-spuProps-wrapper {
    gap: 1.6rem;
    padding-top: 2.4rem;
    font-size: 1rem;
  }

  .fabrique-header {
    gap: 1.6rem;
    height: 6.6rem;
    padding: 0 1.6rem;
  }

  .small-hide {
    display: none;
  }

  .facets-vertical {
    flex-direction: column;
    gap: 0;
  }

  .medium-hide {
    display: block;
  }

  .fabrique-load-mord-product-list {
    padding: 1.6rem 0;
  }

  .main-collection-filters {
    display: flex;
  }

  .fabrique-sort-wrapper {
    display: none;
  }

  .fabrique-menu-drawer-wrapper {
    display: flex;
  }

  .fabrique-sort-right-view-model {
    gap: 0.4rem;
  }

  fabrique-localization-header-icon {
    display: none;
  }

  header-drawer {
    display: block;
  }

  .header__inline-menu {
    display: none;
  }

  .footer__content-top {
    padding: 2.4rem 1.6rem;
  }

  .fabrique-goods-detail-tax_taxText {
    padding-top: 0.8rem;
  }

  .fabrique-pc {
    display: none;
  }

  .fabrique-mail-subscription-content {
    width: calc(100% - 6.4rem);
    padding: 2.4rem 1.6rem;
  }

  .fabrique-mail-subscription-content-button {
    margin-top: 1.6rem;
  }

  .header__heading-logo-wrapper {
    font-size: 10rem;
  }

  .fabrique-product-box fabrique-try-on-icon svg {
    width: 1.6rem;
    height: 1.6rem;
  }

  .fabrique-product-box fabrique-try-on-icon span {
    font-size: 1.2rem;
  }

  .fabrique-prouduct-try-on fabrique-try-on-icon {
    top: 16rem;
    right: 1.6rem;
    position: fixed;
    z-index: 100;
    padding: 1.4rem 2rem;
  }

  .fabrique-prouduct-try-on fabrique-try-on-icon svg {
    width: 2.4rem;
    height: 2.4rem;
  }

  .fabrique-prouduct-try-on fabrique-try-on-icon span {
    font-size: 1.6rem;
  }

  .fabrique-try-on-dialog-content {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    transform: translatex(0%);
    padding: 0 0 3.2rem;
    overflow: scroll;
  }

  .fabrique-try-on-dialog-head {
    padding: 1.6rem;
  }

  .fabrique-try-on-dialog-des {
    display: none;
  }

  .fabrique-try-on-dialog-action-pc {
    display: none;
  }

  .fabrique-try-on-dialog-action-mobile {
    display: flex;
  }

  .fabrique-try-on-dialog-action .fabrique-try-on-dialog-des {
    display: block;
  }

  .fabrique-try-on-dialog-action-button {
    margin-bottom: 2.4rem;
  }

  .fabrique-try-on-dialog-content-Model,
  .fabrique-try-on-dialog-upload,
  .fabrique-try-on-dialog-content-generating {
    max-width: 100%;
  }

  .fabrique-try-on-dialog-context {
    padding: 0 1.6rem;
  }

  .fabrique-try-on-dialog-mobile-Model {
    display: flex;
  }

  .fabrique-try-on-dialog-content-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0rem;
  }



  .fabrique-try-on-dialog-upload-content .fabrique-try-on-dialog-upload-action {
    gap: 0.8rem;
  }

  .fabrique-try-on-dialog-content-Model {
    display: none;
  }

  .fabrique-try-on-dialog-mobile-Model-des {
    flex: 1;
  }

  .fabrique-try-on-dialog-upload {
    width: 100%;
    flex: auto;
    aspect-ratio: 1 / 1;
  }

  .fabrique-try-on-dialog-upload-content {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .fabrique-try-on-dialog-content-generating {
    width: 100%;
    aspect-ratio: 2 / 3;
    flex: auto;
  }

  .product-size-chart .sticky-left {
    font-size: 1.2rem;
  }

  .search-modal__content {
    padding: 0;
  }

  .search-modal__content .modal__close-button.link {
    position: absolute;
    right: 2rem;
  }

  .search-modal__content .search-modal-action {
    margin: 2.4rem 0 1.6rem;
    padding: 0 1.6rem;
    width: auto;
  }

  .search-modal-popular {
    padding: 0 1.6rem;
  }

  .search-modal-popular .search-modal-popular-title {
    padding: 0rem;
  }

  ul#product-grid.grid--4-col-desktop .advertising_item_li_2 {
    width: 100% !important;
    max-width: 100% !important;
  }

  .fabrique-product-price {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .fabrique-product-price_compare_at_price {
    padding-left: 0;
  }


  .fabrique-localization-dialog-content-country {
    margin: 0 1.6rem;
  }

  .fabrique-localization-dialog-content-country .fabrique-localization-dialog-content-header {
    padding: 1.6rem 0;
  }

  .fabrique-localization-dialog-content-country .fabrique-header-menu-level-2-wrapper_li {
    padding: 0.8rem 0 !important;
  }

  .gruop-letter {
    gap: 1.6rem;
  }

  .gruop-letter .designer-info {
    width: calc(50% - 16px / 2);
    max-width: calc(50% - 16px / 2);
  }

  .gruop-letter .designer-info-image {
    width: 100%;
    aspect-ratio: 2 / 3;
  }

  .gruop-letter .designer-address {
    font-size: 1rem;
  }

  .gruop-letter .designer-name {
    font-size: 1.2rem;
  }

  .gruop-letter .fabrique-designer-more-list_item-signature {
    font-size: 1rem;
  }

  .alphabet-tabs {
    background: transparent !important;
  }

  .section-header--product {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: transparent;
    color: #fff;
    border-bottom: none;
  }


  .section-header--product.shopify-section-header-hidden.shopify-section-header-sticky {
    position: inherit;
  }


  .section-header--product.shopify-section-header-sticky:not(.shopify-section-header-hidden) {
    position: sticky;
  }


  .section-header--product .fabrique-header {
    border-bottom: none;
  }
  .fabrique-product-sale{
    font-size: 1rem;
    right: 0.8rem;
    top: 0.8rem;
    line-height: 1.6rem;
  }
}