.desktop-only {
  display: none !important;
}
.mobile-only {
  display: block !important;
}
@media (min-width: 769px) {
  .desktop-only {
    display: block !important;
  }
  .mobile-only {
    display: none !important;
  }
}
.d-none {
  display: none !important;
}
.m-none {
  display: block !important;
}
@media only screen and (min-width: 0px) {
  .m-none {
    display: none !important;
  }
  .d-none {
    display: block !important;
  }
}
.page-width-custom {
  max-width: 1400px;
}
.p-0 {
  padding: 0 !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mb-sm {
  margin-block: 40px;
}
.mb-m {
  margin-block: 60px;
}
.mb-l {
  margin-block: 80px;
}
.pb-s {
  padding-block: 20px;
}
.pb-l {
  padding-block: 60px;
}
.pi-m {
  padding-inline: 2rem;
}
.pi-l {
  padding-inline: 4rem;
}
.pi-xl {
  padding-inline: 6rem;
}
body,
a,
span,
p,
b,
html,
div {
  font-family: var(--font-body-family);
}
h1,
h2,
h3,
h4,
h5,
h6,
h0 {
  font-family: var(--font-heading-family);
}
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  transition: all 0.5s ease;
}
html body * + * {
  margin: 0;
  padding: 0;
}
@keyframes fromBottomUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes moveLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes pulsate {
  from {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(2);
    opacity: 0;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes solidPulse {
  from {
    transform: scale(0);
    opacity: 1;
  }
  50% {
    transform: scale(2.5);
    opacity: 0;
  }
  to {
    opacity: 0;
  }
}
.d-none {
  display: none !important;
}
.m-none {
  display: block !important;
}
@media only screen and (min-width: 0px) {
  .m-none {
    display: none !important;
  }
  .d-none {
    display: block !important;
  }
}
.page-width-custom {
  max-width: 1400px;
}
.custom-banner {
  background-position: cover;
  width: 100%;
  display: flex;
  background-size: cover;
  background-position: center;
  margin-block: 20px;
  position: relative;
  overflow: hidden;
}
.custom-banner__image {
  position: absolute;
  height: 100%;
  width: inherit;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}
.custom-banner__image--two-photos {
  display: none;
}
@media only screen and (min-width: 769px) {
  .custom-banner__image--two-photos {
    display: block;
  }
}
.custom-banner__image--mobile {
  display: block;
}
@media only screen and (min-width: 769px) {
  .custom-banner__image--mobile {
    display: none;
  }
}
.custom-banner--large {
  height: 40vh;
}
@media only screen and (min-width: 769px) {
  .custom-banner--large {
    height: 50vh;
  }
}
.custom-banner--medium {
  height: 20vh;
}
@media only screen and (min-width: 769px) {
  .custom-banner--medium {
    height: 30vh;
  }
}
.custom-banner--small {
  height: 15vh;
}
@media only screen and (min-width: 769px) {
  .custom-banner--small {
    height: 25vh;
  }
}
.custom-banner--top {
  align-items: flex-start;
}
.custom-banner--center {
  align-items: center;
}
.custom-banner--bottom {
  align-items: flex-end;
}
.custom-banner__text {
  display: flex;
  width: 100%;
}
.custom-banner__text--left {
  justify-content: flex-start;
}
.custom-banner__text--center {
  justify-content: center;
}
.custom-banner__text--right {
  justify-content: flex-end;
}
.d-none {
  display: none !important;
}
.m-none {
  display: block !important;
}
@media only screen and (min-width: 0px) {
  .m-none {
    display: none !important;
  }
  .d-none {
    display: block !important;
  }
}
.page-width-custom {
  max-width: 1400px;
}
.custom-image-with-text {
  width: 100vw;
  margin: 0px auto;
  margin-bottom: 0px;
  height: 50vh;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 120px;
}
@media only screen and (min-width: 769px) {
  .custom-image-with-text {
    height: 60vh;
    width: 90vw;
    margin-bottom: 0;
  }
}
.custom-image-with-text__photo {
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  -o-object-fit: fill;
  object-fit: fill;
  background-position: center center;
}
@media only screen and (min-width: 769px) {
  .custom-image-with-text__photo {
    width: 90%;
  }
}
.custom-image-with-text .custom-image-with-text__content {
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  left: 8%;
  height: auto;
  background-color: #fff;
  width: 84%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (min-width: 769px) {
  .custom-image-with-text .custom-image-with-text__content {
    top: 50%;
    bottom: unset;
    left: 0;
    min-height: 60%;
    padding: 4rem;
    transform: translateY(-50%);
    width: 55%;
  }
}
.custom-image-with-text .custom-image-with-text__content p {
  margin: 0;
}
.collection .collection__description h1 {
  text-align: center;
}
.two-images .multicolumn-card .media--adapt img {
  width: auto;
  height: 300px;
  margin: 0 auto;
}
.two-images .multicolumn-list {
  max-height: 300px;
}
.two-images .multicolumn-list li {
  max-height: 300px;
}
.two-images .multicolumn-list li .multicolumn-card {
  max-height: 300px;
}
.two-images
  .multicolumn-list
  li
  .multicolumn-card
  .multicolumn-card__image-wrapper {
  max-height: 300px;
}
.two-images
  .multicolumn-list
  li
  .multicolumn-card
  .multicolumn-card__image-wrapper
  .media--adapt {
  padding-bottom: 300px !important;
}
@media (max-width: 767px) {
  .two-images .multicolumn-list {
    max-height: 550px;
  }
}
header-drawer .menu-drawer__inner-container .list-menu__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header-drawer .menu-drawer__inner-container .list-menu__item a,
header-drawer .menu-drawer__inner-container .list-menu__item a:visited,
header-drawer .menu-drawer__inner-container .list-menu__item a:active {
  color: rgba(var(--color-foreground), 0.85);
  text-decoration: none;
}
header-drawer .list-social .list-social__link .icon {
  background-color: rgba(0, 0, 0, 0);
}
.header-position {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  display: block !important;
  height: 60px;
  width: 100vw;
  z-index: 20;
  pointer-events: none;
}
.reviewVorher .reviewBx {
  background-color: #fff;
  flex-direction: row;
  padding: 20px 5% !important;
}
.reviewVorher .reviewBx .reviewBx_left {
  width: 20%;
  text-align: center;
  align-self: center;
}
.reviewVorher .reviewBx .reviewBx_left h3 {
  margin: 0;
}
.reviewVorher .reviewBx .reviewBx_center {
  width: 60%;
  align-self: center;
}
.reviewVorher .reviewBx .reviewBx_right {
  width: 20%;
}
.reviewVorher .reviewBx .reviewBx_right .reviewUser {
  height: auto;
  width: 100%;
}
.reviewVorher .reviewBx .reviewBx_right .reviewUser img {
  width: 100%;
  height: auto;
  border-radius: 0;
}
.reviewVorher .reviewStars {
  color: #ffdbe1;
}
.vorher_collection {
  max-width: 350px;
}
.vorher_collection .swiper-button-prev,
.vorher_collection .swiper-button-next {
  display: none;
}
@media only screen and (min-width: 0px) {
  .reviewVorher .reviewBx {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0 !important;
  }
  .reviewVorher .reviewBx .reviewBx_left {
    width: 100%;
  }
}
.d-none {
  display: none !important;
}
.m-none {
  display: block !important;
}
@media only screen and (min-width: 0px) {
  .m-none {
    display: none !important;
  }
  .d-none {
    display: block !important;
  }
}
.page-width-custom {
  max-width: 1400px;
}
.collection slider-component .testimonials {
  gap: 30px;
}
.collection slider-component .testimonials .testimonials__testimonial-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  gap: 10px;
  padding: 40px;
}
.collection slider-component .testimonials .testimonials__item {
  background-color: #fff;
  font-size: 16px;
  width: calc(90% - 40px);
  min-width: calc(90% - 40px);
  color: rgba(var(--color-foregrund), 0.85);
  padding-bottom: 3rem !important;
  min-height: 100%;
}
@media only screen and (min-width: 769px) {
  .collection slider-component .testimonials .testimonials__item {
    width: calc(25% - 50px);
    min-width: unset;
  }
}
.collection slider-component .testimonials .testimonials__item p {
  font-size: 14px;
  line-height: 1.8rem;
  letter-spacing: 0.1rem;
}
@media (min-width: 1440px) {
  .collection slider-component .testimonials .testimonials__item {
    width: calc(16.66667% - 30px);
    min-width: calc(16.66667% - 80px);
    max-width: 210px;
  }
}
@media (min-width: 1490px) {
  .collection slider-component .testimonials .testimonials__item {
    width: calc(16.66667% - 60px);
    min-width: calc(16.66667% - 80px);
  }
}
.collection slider-component .testimonials .testimonials__item--main {
  background-color: #32374a;
}
.collection
  slider-component
  .testimonials
  .testimonials__item--main
  .testimonials__testimonial-content
  h1,
.collection
  slider-component
  .testimonials
  .testimonials__item--main
  .testimonials__testimonial-content
  h2,
.collection
  slider-component
  .testimonials
  .testimonials__item--main
  .testimonials__testimonial-content
  h3,
.collection
  slider-component
  .testimonials
  .testimonials__item--main
  .testimonials__testimonial-content
  h4,
.collection
  slider-component
  .testimonials
  .testimonials__item--main
  .testimonials__testimonial-content
  h5,
.collection
  slider-component
  .testimonials
  .testimonials__item--main
  .testimonials__testimonial-content
  h6 {
  color: #fff;
  letter-spacing: 1px;
  font-weight: normal;
}
.collection slider-component .testimonials__title {
  margin: 0;
  color: #fff;
  font-size: 24px;
}
.collection slider-component .testimonials__testimonial-content {
  padding-top: 10px;
  font-size: 16px;
}
.collection slider-component .testimonials__star-holder {
  display: flex;
  width: 100%;
  gap: 5px;
  justify-content: flex-start;
}
.collection slider-component .testimonials__star-holder svg {
  width: 20px;
}
.collection slider-component .testimonials .testimonials__user {
  display: flex;
  flex-direction: column;
}
.collection slider-component .testimonials .testimonials__user p {
  margin: 0;
  font-size: 14px;
}
.collection slider-component .testimonials .testimonials__user-author {
  font-size: 14px;
  margin: 0;
}
.collection slider-component .testimonials .testimonials__user-subheading {
  line-height: 1.4rem;
  font-size: 12px;
  margin: 0;
  color: #777;
  font-weight: 300;
}
.what-are-we {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.what-are-we__title {
  margin: 0;
  font-weight: 600;
  font-size: 28px;
  color: rgba(var(--color-foreground), 0.85);
}
.what-are-we__item-holder {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}
.what-are-we__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  width: 150px;
  text-align: center;
}
.what-are-we__item-svg-holder {
  width: 80px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  display: grid !important;
  place-content: center;
  background-color: #edb0ba;
}
.what-are-we__item-svg-holder svg {
  height: 100%;
  width: 100%;
}
.what-are-we__item-description {
  margin: 0;
}
.what-are-we .link {
  margin: 0;
  transition: color 0.3s ease;
}
.what-are-we .link:hover {
  color: #edb0ba;
}
.d-none {
  display: none !important;
}
.m-none {
  display: block !important;
}
@media only screen and (min-width: 0px) {
  .m-none {
    display: none !important;
  }
  .d-none {
    display: block !important;
  }
}
.page-width-custom {
  max-width: 1400px;
}
.main-product {
  gap: 5px;
  max-width: 1400px;
  background-color: #ecf3fa;
}
@media only screen and (min-width: 769px) {
  .main-product {
    margin: 0 auto;
  }
}
.main-product .product.grid {
  display: grid;
  grid-template-columns: 1fr;
  place-content: center;
}
@media only screen and (min-width: 769px) {
  .main-product .product.grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}
.main-product .product.grid .product__media-wrapper {
  width: 100%;
  max-width: 100%;
}
.main-product .product.grid .product__tax {
  margin-top: 1px;
}
.main-product .product.grid .product-form__buttons {
  width: 100%;
  max-width: 100%;
}
.main-product .product.grid .product-form__buttons .button {
  margin-bottom: 20px;
  margin-top: 0;
}
.main-product
  .product.grid
  .shopify-payment-button
  .shopify-cleanslate
  .h7OYsWHrW5495r9beh2n {
  border-radius: 5px;
}
.main-product .product .product__info-wrapper {
  width: 100% !important;
  padding: 20px;
  max-width: 100% !important;
  min-width: 100%;
}
.main-product .product .product__info-wrapper .product__info-container {
  min-width: 100%;
  width: 100%;
}
.main-product .product .product__info-wrapper .breadcrumbs {
  font-size: 13px;
}
.main-product .product .product__info-wrapper .breadcrumbs a,
.main-product .product .product__info-wrapper .breadcrumbs a:visited,
.main-product .product .product__info-wrapper .breadcrumbs a:active {
  color: inherit;
  text-decoration: none;
  font-size: inherit;
  margin-bottom: 5px;
}
.main-product .product .product__info-wrapper .product__title {
  margin-bottom: 0;
}
.main-product .product .product__info-wrapper .product__title h1 {
  font-size: 28.8px;
  font-weight: 500;
}
.main-product
  .product
  .product__info-wrapper
  .product__subtitle
  .metafield-single_line_text_field {
  margin-bottom: 20px;
  font-weight: 600;
}
.main-product .product .product__info-wrapper .price {
  display: flex;
  align-items: center;
}
.main-product .product .product__info-wrapper .price .price__container {
  display: flex;
  align-items: center;
}
.main-product
  .product
  .product__info-wrapper
  .price
  .price__container
  .price__sale
  .price-item {
  font-size: 15px;
}
.main-product .product .product__info-wrapper .price .price__badge-sale {
  background-color: #32374a;
  color: #fff;
  border: none;
}
.main-product .product .product__info-wrapper .product__info-container {
  display: flex;
  flex-direction: column;
  display: flex;
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .main-product .product .product__info-wrapper .product__info-container {
    align-items: flex-start;
  }
}
.main-product
  .product
  .product__info-wrapper
  .product__info-container
  div:has(.product-form) {
  width: 100%;
  max-width: 360px;
}
@media only screen and (min-width: 769px) {
  .main-product
    .product
    .product__info-wrapper
    .product__info-container
    div:has(.product-form) {
    width: unset;
    min-width: 250px;
  }
}
.main-product
  .product
  .product__info-wrapper
  .product__info-container
  div:has(.product-form)
  product-form {
  width: 100%;
}
.main-product .product .product__info-wrapper .quantity {
  padding: 0.5rem;
}
.main-product .product .product__info-wrapper .quantity:after {
  box-shadow: none;
  border: 0.03rem solid rgba(var(--color-foreground), 0.6);
  border-radius: 5px;
}
.main-product .product .product__info-wrapper .highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.main-product .product .product__info-wrapper .highlights h1,
.main-product .product .product__info-wrapper .highlights h2,
.main-product .product .product__info-wrapper .highlights h3,
.main-product .product .product__info-wrapper .highlights h5,
.main-product .product .product__info-wrapper .highlights h4,
.main-product .product .product__info-wrapper .highlights h6,
.main-product .product .product__info-wrapper .highlights h0,
.main-product .product .product__info-wrapper .highlights p {
  margin: 0;
}
.main-product .product .product__info-wrapper .highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
  margin-bottom: 20px;
}
@media only screen and (min-width: 481px) {
  .main-product .product .product__info-wrapper .highlights__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.main-product .product .product__info-wrapper .highlights__item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.main-product .product .product__info-wrapper .highlights__item-image {
  width: 50px;
  aspect-ratio: 1;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}
.main-product
  .product
  .product__info-wrapper
  .highlights__item-description
  .metafield-rich_text_field
  > * {
  margin: 0;
  font-size: 15px;
  font-family: inherit;
  color: rgba(var(--color-foregrund), 0.85);
}
.main-product .product .product__info-wrapper .free-shipping {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
.main-product .product .product__info-wrapper .free-shipping svg {
  width: 25px;
  aspect-ratio: 1;
  fill: rgba(var(--color-foreground), 0.9);
}
.main-product .product .product__info-wrapper .free-shipping p {
  margin: 0;
  color: inherit;
}
.main-product .product .product__info-wrapper .extended-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin-top: 20px;
}
.main-product .product .product__info-wrapper .extended-highlights h1,
.main-product .product .product__info-wrapper .extended-highlights h2,
.main-product .product .product__info-wrapper .extended-highlights h3,
.main-product .product .product__info-wrapper .extended-highlights h5,
.main-product .product .product__info-wrapper .extended-highlights h4,
.main-product .product .product__info-wrapper .extended-highlights h6,
.main-product .product .product__info-wrapper .extended-highlights h0,
.main-product .product .product__info-wrapper .extended-highlights p {
  margin: 0;
}
.main-product .product .product__info-wrapper .extended-highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
  margin-bottom: 20px;
}
@media only screen and (min-width: 481px) {
  .main-product .product .product__info-wrapper .extended-highlights__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.main-product .product .product__info-wrapper .extended-highlights__item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.main-product .product .product__info-wrapper .extended-highlights__item-image {
  height: 50px;
  aspect-ratio: 1;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}
.main-product
  .product
  .product__info-wrapper
  .extended-highlights__item-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.main-product
  .product
  .product__info-wrapper
  .extended-highlights__item-title
  .metafield-rich_text_field
  > * {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: inherit;
}
.main-product
  .product
  .product__info-wrapper
  .extended-highlights__item-description
  .metafield-rich_text_field
  > * {
  margin: 0;
  font-size: 15px;
  font-family: inherit;
  color: rgba(var(--color-foregrund), 0.85);
}
.main-product .product .slider-buttons {
  display: flex;
  opacity: 1;
}
@media only screen and (min-width: 769px) {
  .main-product .product .slider-buttons {
    display: none;
  }
}
.main-product .product .slider-buttons .slider-button {
  display: unset;
  z-index: 2;
}
.main-product .product .product__media-wrapper slider-component:last-of-type {
  margin-top: 10px;
}
.main-product
  .product
  .product--thumbnail_slider
  .product__media-wrapper
  .slider-mobile-gutter
  .slider-button {
  opacity: 1;
  z-index: 2;
}
.main-product
  .product
  .product--thumbnail_slider
  .product__media-wrapper
  .slider-mobile-gutter
  .slider-button:disabled {
  opacity: 0;
}
.main-product .product__available {
  display: flex;
  gap: 10px;
  align-items: center;
}
.main-product .product__available p {
  margin: 0;
  line-height: unset;
  font-size: 16px;
}
.main-product .product__available .product__light {
  display: flex;
  height: 9px;
  width: 9px;
  border-radius: 100%;
  position: relative;
}
.main-product .product__available .product__light--available {
  background-color: #0bce0b;
}
.main-product .product__available .product__light--unavailable {
  background-color: gray;
}
.main-product
  .product__available
  .product__light:not(.product__light--unavailable)::after {
  display: table;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: solidPulse 2s ease infinite forwards;
  background-color: inherit;
  border-radius: inherit;
}
slideshow-component:not(.page-width) .slider-buttons {
  display: none;
}
@media only screen and (min-width: 769px) {
  slideshow-component:not(.page-width) .slider-buttons {
    display: flex;
  }
}
.d-none {
  display: none !important;
}
.m-none {
  display: block !important;
}
@media only screen and (min-width: 0px) {
  .m-none {
    display: none !important;
  }
  .d-none {
    display: block !important;
  }
}
.page-width-custom {
  max-width: 1400px;
}
.top-bar {
  min-height: 60px;
  width: 100%;
  overflow: hidden;
  margin-block: 40px;
}
.top-bar-slider {
  padding-block: 0.8rem;
  background-color: #edb0ba;
  animation: moveLeft 15s linear infinite;
  display: flex;
  animation-play-state: running;
  cursor: pointer;
  min-width: -moz-max-content;
  min-width: max-content;
}
@media only screen and (min-width: 769px) {
  .top-bar-slider {
    animation-duration: 15s;
  }
}
.top-bar-slider:hover {
  animation-play-state: paused;
}
.top-bar-block {
  padding-inline: 3rem;
  min-width: -moz-max-content;
  min-width: max-content;
}
.top-bar-block p {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: inherit;
  color: var(--color-foreground);
}
.multirow .image-with-text__text-item {
  background-color: #fff;
  padding: 4rem;
}
.multirow .image-with-text__content {
  padding: 2rem;
}
.multirow .image-with-text__heading,
.multirow .image-with-text__text {
  color: rgba(var(--color-foreground), 0.75);
}
.d-none {
  display: none !important;
}
.m-none {
  display: block !important;
}
@media only screen and (min-width: 0px) {
  .m-none {
    display: none !important;
  }
  .d-none {
    display: block !important;
  }
}
.page-width-custom {
  max-width: 1400px;
}
.icon-blocks {
  display: flex;
  margin-block: 20px;
  flex-wrap: wrap;
  gap: 20px;
  align-items: first baseline;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .icon-blocks {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
.icon-blocks--space-between {
  justify-content: space-between;
}
.icon-blocks--center {
  justify-content: center;
}
.icon-blocks--space-around {
  justify-content: space-around;
}
.icon-blocks--space-evenly {
  justify-content: space-evenly;
}
.icon-blocks .icon-block__container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 130px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 769px) {
  .icon-blocks .icon-block__container {
    margin-bottom: 0;
  }
}
.icon-blocks .icon-block__container .icon-block__image {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 769px) {
  .icon-blocks .icon-block__container .icon-block__image {
    width: 120px;
  }
}
.icon-blocks .icon-block__container--small .icon-block__image {
  width: 50px;
}
@media only screen and (min-width: 769px) {
  .icon-blocks .icon-block__container--small .icon-block__image {
    width: 60px;
  }
}
.icon-blocks .icon-block__container--regular .icon-block__image {
  width: 100px;
}
@media only screen and (min-width: 769px) {
  .icon-blocks .icon-block__container--regular .icon-block__image {
    width: 120px;
  }
}
.icon-blocks .icon-block__description {
  text-align: center;
  max-width: 250px;
}
.icon-blocks .icon-block__description h1,
.icon-blocks .icon-block__description h2,
.icon-blocks .icon-block__description h3,
.icon-blocks .icon-block__description h4,
.icon-blocks .icon-block__description h5,
.icon-blocks .icon-block__description h6,
.icon-blocks .icon-block__description p {
  margin: 0;
  color: rgba(var(--color-foreground), 0.85);
  font-size: 12.8px;
}
@media only screen and (min-width: 769px) {
  .icon-blocks .icon-block__description h1,
  .icon-blocks .icon-block__description h2,
  .icon-blocks .icon-block__description h3,
  .icon-blocks .icon-block__description h4,
  .icon-blocks .icon-block__description h5,
  .icon-blocks .icon-block__description h6,
  .icon-blocks .icon-block__description p {
    font-size: 16px;
  }
}
.image-title-description {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #e2f4ff;
  margin-block: 3rem;
  padding: 4rem;
}
.image-title-description--start {
  align-items: flex-start;
}
.image-title-description--center {
  align-items: center;
}
.image-title-description--end {
  align-items: flex-end;
}
.image-title-description__title {
  text-align: center;
}
.image-title-description__image {
  aspect-ratio: 16/9;
}
.image-title-description__image--large {
  height: 20vh;
}
@media only screen and (min-width: 769px) {
  .image-title-description__image--large {
    height: 30vh;
  }
}
.image-title-description__image--medium {
  height: 15vh;
}
@media only screen and (min-width: 769px) {
  .image-title-description__image--medium {
    height: 25vh;
  }
}
.image-title-description__image--small {
  height: 10vh;
}
@media only screen and (min-width: 769px) {
  .image-title-description__image--small {
    height: 20vh;
  }
}
.image-title-description__description {
  text-align: center;
  max-width: 95%;
}
@media only screen and (min-width: 769px) {
  .image-title-description__description {
    max-height: 70%;
  }
}
.image-title-description__description p {
  font-size: 16px;
}
.custom-grid-row {
  display: flex;
  gap: var(--grid-mobile-horizontal-spacing);
  width: 100%;
  height: auto;
  max-width: 1400px;
  flex-direction: column-reverse;
}
.custom-grid-row h1,
.custom-grid-row h2,
.custom-grid-row h3,
.custom-grid-row h4,
.custom-grid-row h5,
.custom-grid-row h6,
.custom-grid-row p {
  margin: 0;
}
@media only screen and (min-width: 769px) {
  .custom-grid-row {
    flex-direction: row;
    gap: var(--grid-desktop-horizontal-spacing);
  }
}
.custom-grid-row--reverse {
  flex-direction: column;
}
@media only screen and (min-width: 769px) {
  .custom-grid-row--reverse {
    flex-direction: row-reverse;
  }
}
.custom-grid-row__image-holder {
  width: 100%;
  overflow: hidden;
  max-height: 60vh;
}
@media only screen and (min-width: 769px) {
  .custom-grid-row__image-holder {
    width: 50%;
  }
}
.custom-grid-row__image-holder img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.custom-grid-row__content {
  width: 100%;
  padding: 2rem 4rem;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  gap: 10px;
  align-items: stretch;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .custom-grid-row__content {
    width: 50%;
  }
}
.custom-grid-row .button {
  min-width: 90%;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .custom-grid-row .button {
    min-width: -moz-max-content;
    min-width: max-content;
  }
}
.d-none {
  display: none !important;
}
.m-none {
  display: block !important;
}
@media only screen and (min-width: 0px) {
  .m-none {
    display: none !important;
  }
  .d-none {
    display: block !important;
  }
}
.page-width-custom {
  max-width: 1400px;
}
.hide-show-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .hide-show-content {
    max-width: 75%;
  }
}
.hide-show-content .hide-show-content__title {
  width: 100%;
}
.hide-show-content .hide-show-content__title h1,
.hide-show-content .hide-show-content__title h2,
.hide-show-content .hide-show-content__title h3,
.hide-show-content .hide-show-content__title h4,
.hide-show-content .hide-show-content__title h5,
.hide-show-content .hide-show-content__title h6,
.hide-show-content .hide-show-content__title p {
  text-align: center;
  font-size: 28px;
}
.hide-show-content .custom-accordion {
  margin-bottom: 14px;
}
.hide-show-content .custom-accordion:last-of-type {
  margin-bottom: 60px;
}
.hide-show-content .custom-accordion * {
  margin: 0;
  padding: 0;
}
.hide-show-content
  .custom-accordion[aria-expanded="true"]
  .custom-accordion__title
  h1,
.hide-show-content
  .custom-accordion[aria-expanded="true"]
  .custom-accordion__title
  h2,
.hide-show-content
  .custom-accordion[aria-expanded="true"]
  .custom-accordion__title
  h3,
.hide-show-content
  .custom-accordion[aria-expanded="true"]
  .custom-accordion__title
  h4,
.hide-show-content
  .custom-accordion[aria-expanded="true"]
  .custom-accordion__title
  h5,
.hide-show-content
  .custom-accordion[aria-expanded="true"]
  .custom-accordion__title
  h6,
.hide-show-content
  .custom-accordion[aria-expanded="true"]
  .custom-accordion__title
  p {
  transition: all 0.3s ease;
  border-bottom: 2px solid rgb(var(--color-foreground));
}
.hide-show-content
  .custom-accordion[aria-expanded="true"]
  .custom-accordion__title
  span
  svg {
  transform: rotate(90deg);
}
.hide-show-content .custom-accordion .custom-accordion__title {
  background-color: rgba(0, 0, 0, 0);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.3s ease;
  cursor: pointer;
}
.hide-show-content .custom-accordion .custom-accordion__title h2,
.hide-show-content .custom-accordion .custom-accordion__title h3,
.hide-show-content .custom-accordion .custom-accordion__title h4,
.hide-show-content .custom-accordion .custom-accordion__title h5,
.hide-show-content .custom-accordion .custom-accordion__title h6,
.hide-show-content .custom-accordion .custom-accordion__title p,
.hide-show-content .custom-accordion .custom-accordion__title ul,
.hide-show-content .custom-accordion .custom-accordion__title ol,
.hide-show-content .custom-accordion .custom-accordion__title li {
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 0, 0, 0);
}
@media only screen and (min-width: 769px) {
  .hide-show-content .custom-accordion .custom-accordion__title h2,
  .hide-show-content .custom-accordion .custom-accordion__title h3,
  .hide-show-content .custom-accordion .custom-accordion__title h4,
  .hide-show-content .custom-accordion .custom-accordion__title h5,
  .hide-show-content .custom-accordion .custom-accordion__title h6,
  .hide-show-content .custom-accordion .custom-accordion__title p,
  .hide-show-content .custom-accordion .custom-accordion__title ul,
  .hide-show-content .custom-accordion .custom-accordion__title ol,
  .hide-show-content .custom-accordion .custom-accordion__title li {
    font-size: 21px;
  }
}
.hide-show-content .custom-accordion .custom-accordion__title:hover > h1,
.hide-show-content .custom-accordion .custom-accordion__title:hover > h2,
.hide-show-content .custom-accordion .custom-accordion__title:hover > h3,
.hide-show-content .custom-accordion .custom-accordion__title:hover > h4,
.hide-show-content .custom-accordion .custom-accordion__title:hover > h5,
.hide-show-content .custom-accordion .custom-accordion__title:hover > h6,
.hide-show-content .custom-accordion .custom-accordion__title:hover > p {
  border-bottom: 2px solid rgb(var(--color-foreground));
}
.hide-show-content .custom-accordion .custom-accordion__title span {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  display: grid;
  place-content: center;
  border: none;
}
.hide-show-content .custom-accordion .custom-accordion__title span svg {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  border: none;
}
.hide-show-content .custom-accordion .custom-accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  padding-inline: 2rem;
}
.hide-show-content .custom-accordion .custom-accordion__content p {
  font-size: 15px;
  overflow: hidden;
}
.hide-show-content .custom-accordion .custom-accordion__content p a,
.hide-show-content .custom-accordion .custom-accordion__content p a:visited,
.hide-show-content .custom-accordion .custom-accordion__content p a:active {
  color: inherit;
}
.hide-show-content
  .custom-accordion
  .custom-accordion__content[aria-hidden="true"] {
  grid-template-rows: 1fr;
}
.d-none {
  display: none !important;
}
.m-none {
  display: block !important;
}
@media only screen and (min-width: 0px) {
  .m-none {
    display: none !important;
  }
  .d-none {
    display: block !important;
  }
}
.page-width-custom {
  max-width: 1400px;
}
.collection-hero__inner {
  position: relative;
  height: 40vh;
}
.collection-hero__inner
  .media
  > *:not(.zoom):not(.deferred-media__poster-button) {
  -o-object-position: 25%;
  object-position: 25%;
}
@media only screen and (min-width: 769px) {
  .collection-hero__inner
    .media
    > *:not(.zoom):not(.deferred-media__poster-button) {
    -o-object-position: center center;
    object-position: center center;
  }
}
.collection-hero__inner h1 {
  display: none;
}
.collection-hero__inner .collection-hero__image-container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  margin: 0;
}
.collection-hero__inner
  .collection-hero__image-container:has(.collection-mobile-photo)
  .collection-desktop-photo {
  display: none;
}
@media only screen and (min-width: 769px) {
  .collection-hero__inner
    .collection-hero__image-container:has(.collection-mobile-photo)
    .collection-desktop-photo {
    display: block;
  }
}
.collection-hero__inner
  .collection-hero__image-container:has(.collection-mobile-photo)
  .collection-mobile-photo {
  display: block;
}
@media only screen and (min-width: 769px) {
  .collection-hero__inner
    .collection-hero__image-container:has(.collection-mobile-photo)
    .collection-mobile-photo {
    display: none;
  }
}
.facets .facet-filters {
  padding-left: 0;
}
.facets__summary div:nth-child(1) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2rem;
}
.facets__summary:hover div .facets__summary-label {
  text-decoration: none;
}
.facets__summary:hover div .icon-plus {
  transform: rotate(0);
}
.facets .facets-layout-list .facets__label:hover .facet-checkbox__text,
.facets
  .facets-layout-list
  .facets__label:hover
  .facets-layout-list
  input:focus
  ~ .facet-checkbox__text {
  text-decoration: none;
}
.facets .facet-checkbox input[type="checkbox"]:checked,
.facets .facet-checkbox input[type="checkbox"]:checked ~ .icon-checkmark {
  background-color: #333749;
  color: #fff;
}
.collection ul li {
  position: relative;
}
.collection ul li .custom-quick-add {
  position: unset;
}
.homepage-banner.banner {
  max-height: 34vw;
  position: relative;
}
.homepage-banner.banner .banner__content {
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.homepage-banner.banner .banner__content .banner__box {
  padding: 0;
  position: absolute;
  bottom: 9vw;
  width: 100%;
  left: 0;
  text-align: left;
  max-width: 100%;
}
.homepage-banner.banner .banner__content .banner__box a.button {
  right: -15.5vw;
  position: relative;
  font-size: 1.7vw;
  padding: 0.7vw 2vw;
}
.homepage-banner.banner .banner__content .banner__box .white-btn a.button {
  background: rgba(0, 0, 0, 0) !important;
  color: #000 !important;
  border: 2px solid #000;
  top: 10px;
}
.homepage-banner.banner
  .banner__content
  .banner__box
  .white-btn
  a.button:hover {
  background: #000 !important;
  color: #fff !important;
}
@media only screen and (min-width: 481px) {
  .homepage-banner.banner .banner__content .banner__box .white-btn a.button {
    top: 30px;
  }
}
@media only screen and (min-width: 0px) {
  .homepage-banner.banner {
    max-height: 200vw;
    height: 125vw;
  }
  .homepage-banner.banner .banner__content .banner__box {
    text-align: center;
    bottom: 19vw;
    left: 0;
  }
  .homepage-banner.banner .banner__content .banner__box a.button {
    font-weight: 600;
    padding: 13px 50px;
    font-size: 22px;
    right: 0;
  }
  .swiper-wrapper.grid .swiper-slide {
    margin-right: 0 !important;
  }
  .swiper-wrapper.grid .swiper-slide .card-wrapper {
    padding: 0 5px;
  }
}
div#insta-feed {
  margin-top: 50px;
}
table.large-8 {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
  margin-block: 20px;
  table-layout: auto;
  font-size: 14px;
}
@media only screen and (min-width: 769px) {
  table.large-8 {
    font-size: 16px;
  }
}
table.large-8 thead th {
  border: 1px solid #000;
}
table.large-8 tbody tr td:first-of-type {
  width: 80%;
}
table.large-8 tbody tr td:last-of-type {
  width: 20%;
}
table.large-8 td {
  border: 1px solid #000;
  padding: 2rem;
}
table.large-8 td p {
  display: none;
}
table.large-8:first-of-type tbody tr {
  height: 120px;
}
table.large-8:nth-of-type(2) {
  max-width: 80%;
}
@media only screen and (min-width: 769px) {
  table.large-8:nth-of-type(2) {
    max-width: 100%;
  }
}
table.large-8:nth-of-type(2) tbody tr td {
  word-break: normal;
  padding: 0.5rem;
}
table.large-8:nth-of-type(2) tbody tr td:first-of-type {
  width: 60%;
}
table.large-8:nth-of-type(2) tbody tr td:nth-of-type(2) {
  width: 20%;
}
table.large-8:nth-of-type(2) tbody tr td:last-of-type {
  width: 20%;
}
.shopify-policy__container {
  max-width: 65ch;
}
.shopify-policy__container h1,
.shopify-policy__container h2,
.shopify-policy__container h3 {
  font-weight: 600;
}
.shopify-policy__container h3 {
  margin-block: 10px;
}
.shopify-policy__container p {
  font-weight: 400;
  margin-block: 5px;
}
.shopify-policy__container p strong {
  font-weight: 400;
}
.cart-setcreator {
  width: 100%;
  height: 500px;
}
.cart-setcreator .cart-container {
  padding: 1rem;
  background: rgba(var(--color-foreground), 0.15);
  border-radius: 8px;
  min-height: 350px;
  max-height: 650px;
  height: 100%;
  margin: 0 1rem;
}
.cart-setcreator .cart-container .cart-content-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cart-setcreator .cart-container .cart-content-empty .icon {
  margin-bottom: 20px;
}
.cart-setcreator .cart-container .cart-content-rendered {
  height: 100%;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart-setcreator .cart-container .cart-content-rendered .cartitems {
  height: auto;
}
.cart-setcreator
  .cart-container
  .cart-content-rendered
  .cart-setcreator__footer.active {
  margin-top: auto;
}
.cart-setcreator .cart-container .cart-content-rendered .add-to-cart {
  margin-top: 0;
}
.cart-setcreator .mobile-cartitle {
  display: flex !important;
  margin-inline: 1rem;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  margin: 0 1rem;
}
.cart-setcreator .mobile-cartitle p {
  display: inline-block;
}
@media only screen and (min-width: 769px) {
  .cart-setcreator .mobile-cartitle {
    display: flex !important;
  }
}
.cart-setcreator .mobile-cartitle .mobile-expand-cart {
  width: 15px;
  aspect-ratio: 1;
  display: grid !important;
  place-content: center;
}
.cart-setcreator .mobile-cartitle .mobile-expand-cart svg {
  height: 100%;
  width: 100%;
}
.grid-set-creator {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.grid-set-creator .grid__item.filtered {
  max-width: 100%;
}
.grid-set-creator .card__media {
  cursor: pointer;
}
.grid-set-creator .card__information {
  padding: 0;
  padding-top: 5px;
}
.grid-set-creator .card__information .h5 {
  font-size: 16px;
}
@media (min-width: 969px) {
  .grid-set-creator {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1169px) {
  .grid-set-creator {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.list li .name {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
}
.list li .name strong {
  font-weight: 400;
}
.footer {
  background-color: #333749;
  position: relative;
  overflow-x: hidden;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  overflow-y: hidden;
}
.footer__content-top {
  height: -moz-max-content;
  height: max-content;
}
.footer__content-bottom {
  height: -moz-max-content;
  height: max-content;
}
.d-none {
  display: none !important;
}
.m-none {
  display: block !important;
}
@media only screen and (min-width: 0px) {
  .m-none {
    display: none !important;
  }
  .d-none {
    display: block !important;
  }
}
.page-width-custom {
  max-width: 1400px;
}
@media only screen and (min-width: 769px) {
  .header--custom {
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    z-index: 20;
    position: absolute;
    z-index: 12;
    transition: all 0.3s linear;
    color: #fff;
    font-size: 20px;
  }
  .header--custom .header__heading-logo-wrapper {
    color: #fff;
  }
  .header--custom .header__heading-logo-wrapper .ib-mm-logo-white {
    width: 50px;
  }
  .header--custom:hover .header__heading-logo-wrapper {
    color: rgba(var(--color-foregorund), 0.9);
  }
  .header--custom:hover .header__icons .icon,
  .header--custom:hover .header__menu-item span {
    color: rgba(var(--color-foregorund), 0.9);
  }
  .header--custom .header__menu-item span a,
  .header--custom .header__menu-item span a:active,
  .header--custom .header__menu-item span a:visited {
    font-size: 18px;
    color: inherit;
    text-decoration: none;
  }
  .header--custom .header__menu-item span,
  .header--custom .header__icons .icon {
    color: #fff;
    transition: color 0.3s ease;
  }
  .header--custom[data-intersecting="true"] {
    background-color: rgba(0, 0, 0, 0);
  }
  .header--custom[data-intersecting="false"] {
    background-color: rgb(var(--color-background));
  }
  .header--custom[data-intersecting="false"] .header__heading-logo-wrapper,
  .header--custom[data-intersecting="false"] .header__menu-item span,
  .header--custom[data-intersecting="false"] .header__icons .icon {
    color: rgba(var(--color-foregorund), 0.9);
  }
}
.drawer .claping {
  background-color: rgba(237, 176, 186, 0.3);
  padding: 6px 8px;
  border-radius: 4px;
  margin-bottom: 5px;
  display: flex;
  max-width: 100%;
  justify-content: center;
}
.drawer .claping p {
  font-size: 12px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  text-align: center;
}
@media (min-width: 429px) {
  .drawer .claping p {
    font-size: 13px;
  }
}
@media (min-width: 429px) {
  .drawer .claping p {
    font-size: 15px;
  }
}
.drawer .free-shipping-wrapper .free-shipping-text {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.drawer .free-shipping-wrapper .free-shipping-text svg {
  margin-right: 5px;
}
.drawer .free-shipping-wrapper progress[value]::-webkit-progress-bar {
  background-color: rgba(var(--color-foreground), 0.2);
  border-radius: 2px;
}
.drawer .free-shipping-wrapper progress[value] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
}
.drawer .free-shipping-wrapper progress[value]::-webkit-progress-value {
  background-image: -webkit-linear-gradient(left, #edb0ba, #edb0ba);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 2px;
  background-size: 35px 20px, 100% 100%, 100% 100%;
}
.drawer cart-drawer-items {
  display: flex;
  flex-direction: column;
}
.drawer cart-drawer-items .cart-items .cart-item__details .cart-item__name {
  font-size: 14px;
}
.drawer .estimated-arrival {
  font-size: 13px;
  padding: 4px 8px;
}
.drawer .shipping-cost {
  display: flex;
  justify-content: space-between;
}
cart-items .cart-item__details .cart-item__name:hover,
cart-drawer-items .cart-item__details .cart-item__name:hover,
.drawer__inter .cart-item__details .cart-item__name:hover {
  text-decoration: none;
}
cart-items .cart-item__details .product-option,
cart-drawer-items .cart-item__details .product-option,
.drawer__inter .cart-item__details .product-option {
  word-break: normal;
}
cart-items .cart-item__quantity-wrapper,
cart-drawer-items .cart-item__quantity-wrapper,
.drawer__inter .cart-item__quantity-wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}
cart-items .cart-item__quantity-wrapper quantity-input,
cart-drawer-items .cart-item__quantity-wrapper quantity-input,
.drawer__inter .cart-item__quantity-wrapper quantity-input {
  border: 1px solid gray;
  height: 35px;
  min-height: 15px;
  width: 100px;
  min-width: none;
}
cart-items .cart-item__quantity-wrapper quantity-input* + *,
cart-drawer-items .cart-item__quantity-wrapper quantity-input* + *,
.drawer__inter .cart-item__quantity-wrapper quantity-input* + * {
  margin: 0;
  padding: 0;
}
cart-items .cart-item__quantity-wrapper quantity-input::after,
cart-drawer-items .cart-item__quantity-wrapper quantity-input::after,
.drawer__inter .cart-item__quantity-wrapper quantity-input::after {
  display: none;
}
cart-items .cart-item__quantity-wrapper quantity-input button,
cart-drawer-items .cart-item__quantity-wrapper quantity-input button,
.drawer__inter .cart-item__quantity-wrapper quantity-input button {
  height: 100%;
  width: 25px;
  font-size: 12px;
}
cart-items .cart-item__quantity-wrapper quantity-input .quantity__input,
cart-drawer-items .cart-item__quantity-wrapper quantity-input .quantity__input,
.drawer__inter .cart-item__quantity-wrapper quantity-input .quantity__input {
  height: 100%;
}
cart-items .cart-item__quantity-wrapper cart-remove-button,
cart-drawer-items .cart-item__quantity-wrapper cart-remove-button,
.drawer__inter .cart-item__quantity-wrapper cart-remove-button {
  margin: 0;
  text-align: center;
}
cart-items .cart-item__quantity-wrapper cart-remove-button a,
cart-drawer-items .cart-item__quantity-wrapper cart-remove-button a,
.drawer__inter .cart-item__quantity-wrapper cart-remove-button a {
  text-decoration: underline;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
  font-size: 10px;
  text-decoration: underline;
}
cart-items .cart-item__quantity-wrapper cart-remove-button a:hover,
cart-drawer-items .cart-item__quantity-wrapper cart-remove-button a:hover,
.drawer__inter .cart-item__quantity-wrapper cart-remove-button a:hover {
  text-decoration: none;
}
cart-items .cart-item__quantity-wrapper .quantity__button:first-of-type,
cart-drawer-items .cart-item__quantity-wrapper .quantity__button:first-of-type,
.drawer__inter .cart-item__quantity-wrapper .quantity__button:first-of-type {
  border-right: 1px solid gray;
}
cart-items .cart-item__quantity-wrapper .quantity__button:last-of-type,
cart-drawer-items .cart-item__quantity-wrapper .quantity__button:last-of-type,
.drawer__inter .cart-item__quantity-wrapper .quantity__button:last-of-type {
  border-left: 1px solid gray;
}
cart-items .cart-item__quantity-wrapper a,
cart-drawer-items .cart-item__quantity-wrapper a,
.drawer__inter .cart-item__quantity-wrapper a {
  transition: all 0.3s ease;
  color: var(--color-foreground);
}
cart-items .cart-item__quantity-wrapper a:hover,
cart-drawer-items .cart-item__quantity-wrapper a:hover,
.drawer__inter .cart-item__quantity-wrapper a:hover {
  color: #333749;
  text-decoration: none;
}
.cart {
  margin-inline: 10px;
}
.cart .cart__footer > div:only-child {
  margin-inline: auto;
}
.cart .cart__blocks {
  display: flex;
  flex-direction: column;
}
.cart .cart__blocks .totals {
  justify-content: space-between;
  max-width: 400px;
  margin: 0 auto;
}
.cart .cart__blocks .totals__total-value {
  font-weight: 600;
}
.cart .cart__ctas > *:not(noscript:first-child) + * {
  margin-top: 15px;
}
.cart .cart__ctas {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.cart .cart__ctas p {
  font-size: 12px;
  margin-top: 0;
}
@media only screen and (min-width: 769px) {
  .cart .cart__ctas {
    width: unset;
    max-width: unset;
    margin: unset;
  }
}
.cart .cart__ctas .button {
  background-color: #edb0ba;
  z-index: 1;
  margin-top: 15px;
  font-size: 13px;
  font-weight: bold;
}
.cart .cart__ctas .button--primary,
.cart .cart__ctas .button--secondary {
  border-radius: 5px;
  border: 2px solid #edb0ba;
  transition: color 0.2s ease;
  color: rgba(var(--color-foreground), 0.85);
  overflow: hidden;
}
.cart .cart__ctas .button--primary::before,
.cart .cart__ctas .button--primary::after,
.cart .cart__ctas .button--secondary::before,
.cart .cart__ctas .button--secondary::after {
  display: none;
}
.cart .cart__ctas .button--primary::after,
.cart .cart__ctas .button--secondary::after {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: none !important;
  height: 100%;
  transform: scaleY(0);
  content: "";
  transition: transform 0.3s ease;
  transform-origin: top;
  z-index: 0;
  background-color: #fff;
}
.cart .cart__ctas .button--primary:hover::after,
.cart .cart__ctas .button--secondary:hover::after {
  transform: scaleY(1);
  transform-origin: bottom;
}
.cart .cart__ctas .button--primary .button__label,
.cart .cart__ctas .button--primary span,
.cart .cart__ctas .button--secondary .button__label,
.cart .cart__ctas .button--secondary span {
  z-index: 1;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: inherit;
}
.cart .cart__ctas .button--primary:hover,
.cart .cart__ctas .button--secondary:hover {
  border-color: rgba(var(--color-foreground), 0.85);
  color: rgba(var(--color-foreground), 0.85);
}
.cart .cart__ctas .button--secondary {
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid rgba(var(--color-foreground), 0.85);
  color: rgba(var(--color-foreground), 0.85);
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cart .cart__ctas .button--secondary::before {
  display: none;
}
.cart__redirect-buttons {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 400px;
}
.cart__redirect-buttons .button {
  text-transform: uppercase;
}
.cart-count-bubble {
  background-color: #edb0ba;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  box-shadow: rgba(99, 99, 99, 0.8) 0px 1px 4px 0px;
}
.d-none {
  display: none !important;
}
.m-none {
  display: block !important;
}
@media only screen and (min-width: 0px) {
  .m-none {
    display: none !important;
  }
  .d-none {
    display: block !important;
  }
}
.page-width-custom {
  max-width: 1400px;
}
.button {
  background-color: #edb0ba;
  z-index: 1;
  margin-top: 15px;
  padding: 15px 22px;
  min-width: -moz-max-content;
  min-width: max-content;
  border-radius: 8px;
}
.button--primary {
  border: 2px solid #edb0ba;
  transition: color 0.2s ease;
  color: rgba(var(--color-foreground), 0.85);
  overflow: hidden;
}
.button--primary::before,
.button--primary::after {
  display: none;
}
.button--primary::after {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: none !important;
  height: 100%;
  transform: scaleY(0);
  content: "";
  transition: transform 0.3s ease;
  transform-origin: top;
  z-index: 0;
  background-color: #fff;
}
.button--primary:hover::after {
  transform: scaleY(1);
  transform-origin: bottom;
}
.button--primary .button__label,
.button--primary span {
  z-index: 1;
  transition: color 0.3s ease;
  font-weight: 600;
}
.button--primary:hover {
  border-color: rgba(var(--color-foreground), 0.85);
  color: rgba(var(--color-foreground), 0.85);
}
.button--secondary {
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid rgba(var(--color-foreground), 0.85);
  color: rgba(var(--color-foreground), 0.85);
}
.button--secondary::before,
.button--secondary ::after {
  display: none;
}
.single-button {
  display: flex;
}
.single-button--left {
  justify-content: flex-start;
}
.single-button--center {
  justify-content: center;
}
.single-button--right {
  justify-content: flex-end;
}
.single-button h1,
.single-button h2,
.single-button h3,
.single-button h4,
.single-button h5,
.single-button h6,
.single-button p,
.single-button span {
  margin: 0;
  letter-spacing: 1px;
  color: rgba(var(--color-foreground), 0.9);
}
.scroll-to-top-position-holder {
  position: absolute;
  display: flex !important;
  height: 100vh;
  width: 100vw;
  pointer-events: none;
}
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 50px;
  display: grid;
  place-content: center;
  aspect-ratio: 1/1;
  width: 50px;
  padding: 1.4rem;
  min-width: unset;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 3;
}
@media only screen and (min-width: 769px) {
  .scroll-to-top {
    bottom: 40px;
    right: 40px;
    height: 60px;
    width: 60px;
  }
}
.scroll-to-top .button__label {
  width: 15px;
  height: 15px;
}
.scroll-to-top .button__label svg {
  width: 100%;
  height: 100%;
  margin: 0;
  transform: rotate(180deg);
}
.announcement-bar {
  background-color: #333749;
}
.announcement-bar__message {
  color: #fff !important;
}
.d-none {
  display: none !important;
}
.m-none {
  display: block !important;
}
@media only screen and (min-width: 0px) {
  .m-none {
    display: none !important;
  }
  .d-none {
    display: block !important;
  }
}
.page-width-custom {
  max-width: 1400px;
}
.tab-collection-wrapper {
  text-align: center;
}
.tab-collection-wrapper h1,
.tab-collection-wrapper h2,
.tab-collection-wrapper h3,
.tab-collection-wrapper h4,
.tab-collection-wrapper h5,
.tab-collection-wrapper h6,
.tab-collection-wrapper p {
  color: rgba(var(--color-foreground), 0.85);
}
.tab-collection-wrapper .tab-collection-options {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  position: relative;
  display: flex;
  height: -moz-max-content;
  height: max-content;
  justify-content: center;
  align-items: baseline;
  font-size: 20px;
  font-weight: bold;
  gap: 20px;
  padding: 0;
}
.tab-collection-wrapper .tab-collection-options .tab-collection-option {
  cursor: pointer;
  margin: 0;
  border-bottom: 3px solid rgba(0, 0, 0, 0);
  transition: color 0.2s;
}
.tab-collection-wrapper .tab-collection-options .current {
  border-bottom: 3px solid #edb0ba;
}
.tab-collection-wrapper .tab-collection-options .underline {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: none;
  left: 0;
  height: 3px;
  background-color: #edb0ba;
}
.tab-collection-wrapper .tab-collection-options .underline::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background-color: #fff;
}
.tab-collection-wrapper .tab-collection {
  display: none;
  visibility: hidden;
  opacity: 0;
  text-align: start;
}
.tab-collection-wrapper .current-collection {
  visibility: visible;
  opacity: 1;
  display: block;
}
.wave__holder {
  position: relative;
  height: 29vh;
  overflow: hidden;
}
@media (max-width: 800px) {
  .wave__holder {
    height: 20vh;
  }
}
.wave {
  height: 100%;
  position: absolute;
  background-color: #333749;
  bottom: -30px;
  left: 0;
  width: 300vw;
  animation: wave 8s infinite linear forwards;
  -webkit-clip-path: polygon(
    100% 100%,
    0% 100%,
    0% 85%,
    1.05% 84.84%,
    2.11% 84.35%,
    3.16% 83.54%,
    4.21% 82.44%,
    5.26% 81.05%,
    6.32% 79.4%,
    7.37% 77.52%,
    8.42% 75.45%,
    9.47% 73.21%,
    10.53% 70.85%,
    11.58% 68.42%,
    12.63% 65.94%,
    13.68% 63.47%,
    14.74% 61.05%,
    15.79% 58.72%,
    16.84% 56.52%,
    17.89% 54.49%,
    18.95% 52.67%,
    20% 51.08%,
    21.05% 49.76%,
    22.11% 48.73%,
    23.16% 48%,
    24.21% 47.59%,
    25.26% 47.51%,
    26.32% 47.76%,
    27.37% 48.32%,
    28.42% 49.21%,
    29.47% 50.39%,
    30.53% 51.84%,
    31.58% 53.55%,
    32.63% 55.48%,
    33.68% 57.6%,
    34.74% 59.87%,
    35.79% 62.25%,
    36.84% 64.7%,
    37.89% 67.18%,
    38.95% 69.64%,
    40% 72.04%,
    41.05% 74.35%,
    42.11% 76.51%,
    43.16% 78.49%,
    44.21% 80.25%,
    45.26% 81.78%,
    46.32% 83.03%,
    47.37% 83.98%,
    48.42% 84.63%,
    49.47% 84.96%,
    50.53% 84.96%,
    51.58% 84.63%,
    52.63% 83.98%,
    53.68% 83.03%,
    54.74% 81.78%,
    55.79% 80.25%,
    56.84% 78.49%,
    57.89% 76.51%,
    58.95% 74.35%,
    60% 72.04%,
    61.05% 69.64%,
    62.11% 67.18%,
    63.16% 64.7%,
    64.21% 62.25%,
    65.26% 59.87%,
    66.32% 57.6%,
    67.37% 55.48%,
    68.42% 53.55%,
    69.47% 51.84%,
    70.53% 50.39%,
    71.58% 49.21%,
    72.63% 48.32%,
    73.68% 47.76%,
    74.74% 47.51%,
    75.79% 47.59%,
    76.84% 48%,
    77.89% 48.73%,
    78.95% 49.76%,
    80% 51.08%,
    81.05% 52.67%,
    82.11% 54.49%,
    83.16% 56.52%,
    84.21% 58.72%,
    85.26% 61.05%,
    86.32% 63.47%,
    87.37% 65.94%,
    88.42% 68.42%,
    89.47% 70.85%,
    90.53% 73.21%,
    91.58% 75.45%,
    92.63% 77.52%,
    93.68% 79.4%,
    94.74% 81.05%,
    95.79% 82.44%,
    96.84% 83.54%,
    97.89% 84.35%,
    98.95% 84.84%,
    100% 85%
  );
  clip-path: polygon(
    100% 100%,
    0% 100%,
    0% 85%,
    1.05% 84.84%,
    2.11% 84.35%,
    3.16% 83.54%,
    4.21% 82.44%,
    5.26% 81.05%,
    6.32% 79.4%,
    7.37% 77.52%,
    8.42% 75.45%,
    9.47% 73.21%,
    10.53% 70.85%,
    11.58% 68.42%,
    12.63% 65.94%,
    13.68% 63.47%,
    14.74% 61.05%,
    15.79% 58.72%,
    16.84% 56.52%,
    17.89% 54.49%,
    18.95% 52.67%,
    20% 51.08%,
    21.05% 49.76%,
    22.11% 48.73%,
    23.16% 48%,
    24.21% 47.59%,
    25.26% 47.51%,
    26.32% 47.76%,
    27.37% 48.32%,
    28.42% 49.21%,
    29.47% 50.39%,
    30.53% 51.84%,
    31.58% 53.55%,
    32.63% 55.48%,
    33.68% 57.6%,
    34.74% 59.87%,
    35.79% 62.25%,
    36.84% 64.7%,
    37.89% 67.18%,
    38.95% 69.64%,
    40% 72.04%,
    41.05% 74.35%,
    42.11% 76.51%,
    43.16% 78.49%,
    44.21% 80.25%,
    45.26% 81.78%,
    46.32% 83.03%,
    47.37% 83.98%,
    48.42% 84.63%,
    49.47% 84.96%,
    50.53% 84.96%,
    51.58% 84.63%,
    52.63% 83.98%,
    53.68% 83.03%,
    54.74% 81.78%,
    55.79% 80.25%,
    56.84% 78.49%,
    57.89% 76.51%,
    58.95% 74.35%,
    60% 72.04%,
    61.05% 69.64%,
    62.11% 67.18%,
    63.16% 64.7%,
    64.21% 62.25%,
    65.26% 59.87%,
    66.32% 57.6%,
    67.37% 55.48%,
    68.42% 53.55%,
    69.47% 51.84%,
    70.53% 50.39%,
    71.58% 49.21%,
    72.63% 48.32%,
    73.68% 47.76%,
    74.74% 47.51%,
    75.79% 47.59%,
    76.84% 48%,
    77.89% 48.73%,
    78.95% 49.76%,
    80% 51.08%,
    81.05% 52.67%,
    82.11% 54.49%,
    83.16% 56.52%,
    84.21% 58.72%,
    85.26% 61.05%,
    86.32% 63.47%,
    87.37% 65.94%,
    88.42% 68.42%,
    89.47% 70.85%,
    90.53% 73.21%,
    91.58% 75.45%,
    92.63% 77.52%,
    93.68% 79.4%,
    94.74% 81.05%,
    95.79% 82.44%,
    96.84% 83.54%,
    97.89% 84.35%,
    98.95% 84.84%,
    100% 85%
  );
}
.wave1 {
  animation-delay: 2s;
}
.wave2 {
  animation-delay: 1.5s;
  background-color: rgba(51, 55, 73, 0.4392156863);
}
.wave3 {
  animation-delay: 1s;
  background-color: rgba(51, 55, 73, 0.4392156863);
}
.wave4 {
  animation-delay: 0.5s;
  background-color: rgba(51, 55, 73, 0.4392156863);
}
.wave5 {
  animation-delay: 0s;
  background-color: rgba(51, 55, 73, 0.4392156863);
}
@keyframes wave {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.d-none {
  display: none !important;
}
.m-none {
  display: block !important;
}
@media only screen and (min-width: 0px) {
  .m-none {
    display: none !important;
  }
  .d-none {
    display: block !important;
  }
}
.page-width-custom {
  max-width: 1400px;
}
slideshow-component .slideshow {
  cursor: pointer;
}
slideshow-component .slideshow__text-wrapper {
  width: 100%;
}
slideshow-component
  .slideshow
  .media.slideshow__media--v2
  > *:not(.zoom):not(.deferred-media__poster-button):first-of-type {
  display: none;
}
@media only screen and (min-width: 769px) {
  slideshow-component
    .slideshow
    .media.slideshow__media--v2
    > *:not(.zoom):not(.deferred-media__poster-button):first-of-type {
    display: block;
  }
}
slideshow-component
  .slideshow
  .media.slideshow__media--v2
  > *:not(.zoom):not(.deferred-media__poster-button):last-of-type {
  display: block;
}
@media only screen and (min-width: 769px) {
  slideshow-component
    .slideshow
    .media.slideshow__media--v2
    > *:not(.zoom):not(.deferred-media__poster-button):last-of-type {
    display: none;
  }
}
slideshow-component .slideshow__text {
  padding-inline: 3rem;
  background-color: rgba(0, 0, 0, 0);
  width: -moz-max-content;
  width: max-content;
}
slideshow-component .slideshow__text h2 {
  color: #fff;
  font-weight: bold;
  font-size: calc(var(--font-heading-scale) * 4rem);
}
slideshow-component:not(.page-width):hover .slider-buttons {
  display: none;
}
@media only screen and (min-width: 769px) {
  slideshow-component:not(.page-width):hover .slider-buttons {
    display: flex;
  }
}
slideshow-component:not(.page-width):hover .slider-buttons .slider-button {
  opacity: 1;
}
slideshow-component:not(.page-width) .slider-buttons {
  position: absolute;
  width: 100%;
  pointer-events: none;
  border: none !important;
  padding-inline: 15px;
  top: 50%;
  display: flex;
  justify-content: space-between !important;
}
slideshow-component:not(.page-width) .slider-buttons .slideshow__autoplay {
  display: none;
}
slideshow-component:not(.page-width) .slider-buttons .slider-button {
  background-color: var(--gradient-background);
  border-radius: 100%;
  pointer-events: all;
  z-index: 2;
  transition: transform 0.2s ease, opacity 0.3s ease;
}
@media only screen and (min-width: 769px) {
  slideshow-component:not(.page-width) .slider-buttons .slider-button {
    opacity: 0;
  }
}
slideshow-component:not(.page-width) .slider-buttons .slider-button:hover {
  transform: scale(1.1);
}
slideshow-component:not(.page-width) .slider-buttons .slider-button .icon {
  height: 1rem;
}
slideshow-component:not(.page-width) .slider-buttons {
  display: none;
}
@media only screen and (min-width: 769px) {
  slideshow-component:not(.page-width) .slider-buttons {
    display: flex;
  }
}
.footer .footer-block__details-content li a,
.footer .footer-block__details-content a:hover,
.footer .footer-block__details-content a:active,
.footer .footer-block__details-content a:visited,
.footer .footer-block__details-content a.active {
  text-decoration: none;
}
.footer .list-social {
  gap: 15px;
}
.footer .list-social .list-social__link {
  padding: 0;
  position: relative;
}
.footer .list-social .list-social__link::after {
  content: "";
  display: table;
  opacity: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #fff;
  border-radius: 100%;
}
.footer .list-social .list-social__link:hover::after {
  animation: pulsate 1.5s linear infinite forwards;
}
.footer .list-social .list-social__link .icon {
  height: 3.2rem;
  width: 3.2rem;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 100%;
  padding: 3px;
}
.footer .list-social .list-social__link .icon path {
  fill: #333749;
}
.accordion summary,
.product__accordion summary {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0rem;
  padding: 0rem;
  font-size: 20px;
}
.accordion summary .icon,
.product__accordion summary .icon {
  width: 15px;
  aspect-ratio: 1;
  transition: transform 0.3s ease;
}
.accordion summary .accordion__title,
.product__accordion summary .accordion__title {
  transition: all 0.3s ease;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
}
.accordion summary .accordion__title p,
.product__accordion summary .accordion__title p {
  padding: 0;
  margin: 5px;
}
.accordion details[open] summary .icon-plus,
.product__accordion details[open] summary .icon-plus {
  transform: rotate(90deg);
}
.accordion .accordion__content,
.product__accordion .accordion__content {
  transition: height 0.3s ease;
}
.facets h1,
.facets h2,
.facets h3,
.facets h4,
.facets h5,
.facets h6,
.facets p,
.facets span,
.facets div,
.facets font {
  color: var(--color-foreground);
}
.facets .facet-filters__field {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1rem 1.75rem 1rem 0;
  cursor: pointer;
}
.facets .facet-filters__field .facet-filters__title {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.facets .facet-filters__field .facet-filters__title span {
  color: #292a36;
  font-size: 2rem;
  font-weight: 500;
  display: flex;
  align-items: flex-end;
}
.facets .facet-filters__field .facet-filters__title svg {
  height: 1.2rem;
  aspect-ratio: 1;
  color: #292a36;
  transition: transform 0.3s ease;
}
.facets .facet-filters__field .radio-buttons {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.facets .facet-filters__field .radio-buttons .radio-button-label {
  padding: 1rem 2rem 1rem 0;
  flex-grow: 1;
  position: relative;
  font-size: 1.4rem;
  display: flex;
  word-break: break-word;
  display: flex;
  gap: 10px;
  color: rgba(var(--color-foreground), 0.85);
  cursor: pointer;
}
.facets .facet-filters__field .radio-buttons .radio-button-label:hover {
  color: rgba(var(--color-foreground), 1);
}
.facets .facet-filters__field .radio-buttons .input-radio-container {
  width: 22px;
  height: 22px;
  position: relative;
}
.facets
  .facet-filters__field
  .radio-buttons
  .input-radio-container
  .facet-filters__input-radio {
  opacity: 0;
}
.facets
  .facet-filters__field
  .radio-buttons
  .input-radio-container
  .custom-radio-button {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid rgba(41, 42, 54, 0.85);
}
.facets
  .facet-filters__field
  .radio-buttons
  .input-radio-container
  .facet-filters__input-radio:checked
  ~ .custom-radio-button {
  background-color: rgba(41, 42, 54, 0.85);
  border: 2px solid rgba(0, 0, 0, 0);
}
.facets
  .facet-filters__field
  .radio-buttons
  .input-radio-container
  .facet-filters__input-radio:checked
  ~ .custom-radio-button::after {
  content: "";
  height: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: #fff;
}
.facets .facets__disclosure-vertical {
  transition: height 0.4s ease;
}
.facets .facets__disclosure-vertical .facets__summary {
  padding-block: 1rem;
}
.d-none {
  display: none !important;
}
.m-none {
  display: block !important;
}
@media only screen and (min-width: 0px) {
  .m-none {
    display: none !important;
  }
  .d-none {
    display: block !important;
  }
}
.page-width-custom {
  max-width: 1400px;
}
.card__media a {
  cursor: pointer;
}
.card__media .media img {
  background: #ecf3fb;
}
.card__media .add-button {
  position: absolute;
  width: 30px;
  display: grid;
  place-content: center;
  height: 30px;
  padding: 0;
  border-radius: 100%;
  z-index: 2;
  bottom: 15px;
  right: 15px;
  cursor: pointer;
  opacity: 1;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 1px solid rgba(var(--color-foreground), 0.05);
  transition: all 0.3s ease, opacity 0.15s ease;
  background-color: rgba(var(--color-background));
}
@media only screen and (min-width: 769px) {
  .card__media .add-button {
    bottom: -10px;
    right: -10px;
    transform: scale(0);
    opacity: 0;
  }
  .card__media .add-button::after {
    content: "";
    width: 100%;
    height: 100%;
    border: 0.15rem solid rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100%;
  }
  .card__media .add-button:hover::after {
    border-color: rgba(var(--color-foreground), 0.35);
    animation: pulsate 1.6s ease infinite;
  }
}
.card__media .add-button span {
  height: 12px;
  aspect-ratio: 1;
  transition: transform 0.3s ease;
  z-index: 1;
  display: block;
}
@media (min-width: 700px) {
  .card__media .add-button span {
    height: 14px;
  }
}
.card__media .add-button:hover ::after {
  content: "";
  height: 100%;
  width: 100%;
  background-color: red;
}
.card__media .add-button:hover span {
  transform: rotate(90deg);
}
.card__media .add-button .loading__spinner {
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card__content {
  overflow: hidden;
  height: -moz-min-content;
  height: min-content;
}
.card-wrapper .card__badge span {
  background-color: #edb0ba;
  border-radius: 0;
  color: #fff;
  border: none;
  text-transform: uppercase;
}
@media only screen and (min-width: 769px) {
  .collection .grid__item-custom:hover .add-button {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 15px;
    transform: scale(1);
    opacity: 1;
  }
}
.d-none {
  display: none !important;
}
.m-none {
  display: block !important;
}
@media only screen and (min-width: 0px) {
  .m-none {
    display: none !important;
  }
  .d-none {
    display: block !important;
  }
}
.page-width-custom {
  max-width: 1400px;
}
slider-component .slider-buttons {
  display: none;
}
@media only screen and (min-width: 769px) {
  slider-component .slider-buttons {
    display: flex;
  }
}
header ul li header-menu .content {
  display: none;
  overflow: hidden;
  position: absolute;
  transform-origin: top;
  top: 100%;
  z-index: -1;
  left: 0;
  padding: 2rem 4rem;
  width: -moz-max-content;
  width: max-content;
  background-color: rgb(var(--color-background));
}
header ul li header-menu .content .mega-menu__list {
  margin: 0;
  padding: 0;
}
header ul li header-menu .header__menu-item {
  position: relative;
  font-size: 1.8rem;
}
header ul li header-menu .header__menu-item:hover {
  color: rgba(var(--color-foreground), 0.85);
}
header ul li header-menu .header__menu-item:hover span {
  text-decoration: none;
  color: #000;
}
header ul li header-menu .header__active-menu-item {
  text-decoration: none;
}
header ul li header-menu .header__menu-item:hover .content {
  transform: scaleY(1);
  display: block;
}
header ul li:first-of-type header-menu .content {
  width: 100vw;
  top: 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 8px 8px 0px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
header ul li:first-of-type header-menu .content .mega-menu__list {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 50px;
}
header ul li:first-of-type header-menu .header__menu-item {
  position: unset;
}
header ul li:first-of-type header-menu .header__menu-item:hover .content {
  padding: 4rem;
  padding-top: 10rem;
}
.custom-collapsible-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
  gap: 2px;
  width: 100%;
  --row-height: 50px;
  overflow: hidden;
  height: var(--row-height);
  transition: height 0.3s ease;
  font-size: 14px;
}
.custom-collapsible-row h1,
.custom-collapsible-row h2,
.custom-collapsible-row h3,
.custom-collapsible-row h4,
.custom-collapsible-row h5,
.custom-collapsible-row h6,
.custom-collapsible-row h0,
.custom-collapsible-row span,
.custom-collapsible-row p {
  margin: 0;
  padding: 0;
}
.custom-collapsible-row__title {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  cursor: pointer;
  color: rgba(var(--color-foreground), 1);
}
.custom-collapsible-row__icon-holder {
  width: 12px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
}
.custom-collapsible-row__icon-holder svg {
  width: 100%;
  aspect-ratio: 1;
  fill: rgba(var(--color-foreground), 0.85);
  transition: transform 0.3s ease;
}
.custom-collapsible-row__icon-holder:has(.icon-caret) svg {
  transform: rotate(-90deg);
}
.custom-collapsible-row__content {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease 0.15s, opacity 0.3s ease 0.15s;
  padding: 10px 20px;
  display: flex;
}
.custom-collapsible-row__content-title {
  margin-block: 2px;
}
.custom-collapsible-row__content p a,
.custom-collapsible-row__content p a:visited,
.custom-collapsible-row__content p a:active {
  color: rgba(var(--color-foreground), 0.85);
}
.custom-collapsible-row__content .metafield-rich_text_field h6 {
  font-weight: 100;
  font-size: 10px;
}
.custom-collapsible-row__row-content {
  display: flex;
}
.custom-collapsible-row[open] .custom-collapsible-row__title {
  background-color: rgba(var(--color-foreground), 0.95);
  color: #fff;
}
.custom-collapsible-row[open] .custom-collapsible-row__icon-holder svg {
  fill: #fff;
}
.custom-collapsible-row[open]
  .custom-collapsible-row__icon-holder:not(.icon-caret)
  svg {
  transform: rotate(90deg);
}
.custom-collapsible-row[open]
  .custom-collapsible-row__icon-holder:has(.icon-caret)
  svg {
  transform: rotate(0deg);
}
.custom-collapsible-row[open] .custom-collapsible-row__content {
  transform: translateY(0);
  opacity: 1;
  display: flex;
  height: auto;
}
.custom-grid-row .custom-collapsible-row--products-page {
  --row-height: 35px;
  height: var(--row-height);
  font-size: 16px;
}
.custom-grid-row
  .custom-collapsible-row--products-page
  .custom-collapsible-row--products-page:first-of-type {
  margin-top: 2rem;
}
.custom-grid-row
  .custom-collapsible-row--products-page[open]
  .custom-collapsible-row__title {
  background-color: rgba(0, 0, 0, 0);
  color: inherit;
}
.custom-grid-row
  .custom-collapsible-row--products-page
  .custom-collapsible-row__title {
  padding: 5px;
  border-bottom: 1px solid #000;
}
.custom-grid-row
  .custom-collapsible-row--products-page
  .custom-collapsible-row__title
  h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.custom-grid-row
  .custom-collapsible-row--products-page
  .custom-collapsible-row__content {
  padding: 3px 6px;
  font-size: 14px;
  flex-direction: column;
  align-items: start;
}
.custom-grid-row
  .custom-collapsible-row--products-page
  .custom-collapsible-row__content
  .custom-collapsible-row__row-description {
  font-size: inherit;
}
.custom-grid-row
  .custom-collapsible-row--products-page
  .custom-collapsible-row__content
  .button--primary {
  padding: 10px;
  min-height: unset;
}
.custom-grid-row
  .custom-collapsible-row--products-page
  .custom-collapsible-row__content
  .button--primary
  span {
  font-weight: 400;
}
.custom-grid-row
  .custom-collapsible-row--products-page
  .custom-collapsible-row__content-row {
  display: flex;
  padding-inline: 1rem;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  width: 100%;
}
.custom-grid-row
  .custom-collapsible-row--products-page
  .custom-collapsible-row__content-row
  span {
  height: 20px;
  aspect-ratio: 1;
  border: 1px solid #000;
  border-radius: 3px;
  position: relative;
}
.custom-grid-row
  .custom-collapsible-row--products-page
  .custom-collapsible-row__content-row
  span
  svg {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #000;
  transform: translate(-50%, -50%);
}
.facets__price-range .facets__display-vertical .facets__price,
.facets__price-range .mobile-facets__submenu .facets__price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.facets__price-range .facets__display-vertical .facets__price .field,
.facets__price-range .mobile-facets__submenu .facets__price .field {
  border: 2px solid #000;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 5px;
  width: -moz-min-content;
  width: min-content;
  margin: 0;
  font-size: 16px;
}
.facets__price-range .facets__display-vertical .facets__price .field::before,
.facets__price-range .facets__display-vertical .facets__price .field::after,
.facets__price-range .mobile-facets__submenu .facets__price .field::before,
.facets__price-range .mobile-facets__submenu .facets__price .field::after {
  content: unset;
}
.facets__price-range
  .facets__display-vertical
  .facets__price
  .field:last-of-type,
.facets__price-range
  .mobile-facets__submenu
  .facets__price
  .field:last-of-type {
  margin-left: 0rem;
}
.facets__price-range
  .facets__display-vertical
  .facets__price
  .field__custom-input,
.facets__price-range
  .mobile-facets__submenu
  .facets__price
  .field__custom-input {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  width: -moz-min-content;
  width: min-content;
  display: flex;
  justify-content: flex-end;
  color: inherit;
  flex: 1;
  text-align: right;
  font-size: 16px;
}
.facets__price-range
  .facets__display-vertical
  .facets__price
  .field__custom-input::-webkit-outer-spin-button,
.facets__price-range
  .facets__display-vertical
  .facets__price
  .field__custom-input::-webkit-inner-spin-button,
.facets__price-range
  .mobile-facets__submenu
  .facets__price
  .field__custom-input::-webkit-outer-spin-button,
.facets__price-range
  .mobile-facets__submenu
  .facets__price
  .field__custom-input::-webkit-inner-spin-button {
  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.facets__price-range
  .facets__display-vertical
  .facets__price
  .field__custom-input:focus,
.facets__price-range
  .facets__display-vertical
  .facets__price
  .field__custom-input:focus-within,
.facets__price-range
  .facets__display-vertical
  .facets__price
  .field__custom-input:focus-visible,
.facets__price-range
  .mobile-facets__submenu
  .facets__price
  .field__custom-input:focus,
.facets__price-range
  .mobile-facets__submenu
  .facets__price
  .field__custom-input:focus-within,
.facets__price-range
  .mobile-facets__submenu
  .facets__price
  .field__custom-input:focus-visible {
  border: none;
  box-shadow: none;
  outline: none;
}
.facets__price-range .facets__display-vertical .facets__price .field__divider,
.facets__price-range .mobile-facets__submenu .facets__price .field__divider {
  font-weight: bold;
}
.facets__price-range .mobile-facets__submenu .range {
  margin: 0 20px;
  margin-top: 10px;
}
.slider_holder {
  position: relative;
  width: 90%;
  margin: 0 auto;
  height: 6px;
  background-color: rgba(var(--color-foreground), 0.2);
  --left-x: 0;
  --right-x: 0;
}
.slider_holder .slider-track {
  height: 6px;
  position: absolute;
  background-color: #f8acb9;
  top: 0;
  left: var(--left-x);
  right: var(--right-x);
}
.slider_holder input[type="range"] {
  position: absolute;
  width: 100%;
  background: none;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.slider_holder input[type="range"]::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: #fff;
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  border: 0.2rem solid rgba(var(--color-foreground), 0.85);
}
.recommended-product {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  text-decoration: none;
}
.recommended-product h1,
.recommended-product h2,
.recommended-product h3,
.recommended-product h4,
.recommended-product h5,
.recommended-product h6 {
  margin: 0;
}
.recommended-product__info-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}
.recommended-product .button {
  padding: 5px 10px;
  margin: 0;
}
.recommended-product .button--primary {
  height: -moz-min-content;
  height: min-content;
  min-height: -moz-max-content;
  min-height: max-content;
  padding: 10px 15px;
}
.recommended-product .button--primary span {
  margin: 0;
  font-size: 12px;
}
.swiper-wrapper .swiper-slide {
  width: 70%;
  margin-right: 20px;
  max-width: 75%;
}
.swiper-wrapper .button {
  border: 2px solid #edb0ba;
}
.swiper-wrapper .button--primary:hover {
  border: 2px solid #000;
}
.swiper-wrapper .card__information {
  padding: 0;
}
.swiper-wrapper .card__information .h5 {
  font-size: 16px;
}
