/** Shopify CDN: Minification failed

Line 269:22 Unexpected ")"

**/
/*vars*/
:root {
  --primary-bg: #5c5144; /* global scope */
  --primary-bg-light: #5c514451;
}

/*global*/
.page-width--full{
  max-width: 100% !important;
  overflow: hidden;
  padding-left: unset;
  padding-right: unset;
}

/*slider global*/
.cstm-swiper-btn{
  display: none;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 55px;
  font-size: 22px;
  border-radius: 50%;
  color: white;
  background: #5c5144;
}

.cstm-swiper-btn:after{
  font-size: 22px;
}

@media only screen and (min-width: 750px) {
  .cstm-feat-collection-slider-section .swiper:hover .cstm-swiper-btn{
    display: flex !important;
  }
}

/*product page*/
@media screen and (max-width: 749px) {
    .product--mobile-columns .product__media-item {
        width: calc(65% - 1.5rem - var(--grid-mobile-horizontal-spacing)) !important;
    }
}

media-gallery slider-component .slider-buttons{
  display: none !important;
}

.cstm-star-rating-widget {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.cstm-star-rating-widget .tp-stars {
  height: 20px;
  width: auto;
  margin: unset !important;
}

.product__info .product-meta__title {
  margin-top: unset;
}

/*price styling*/
.product__info-wrapper .price{
  display: flex;
  align-items: center;
}

.price-item.price-item--sale{
  color: red;
}

.product__info-wrapper .price-item.price-item--sale{
  font-size: 2.2rem;
  font-weight: 700;
}

/*cstm usp item*/
.cstm-usp {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 5px;
}

.cstm-usp:has(.orange) {
  color: #f4af29;
}

.cstm-usp svg {
  width: 20px;
  min-width: 20px;
  height: auto;
}

.cstm-usp .cstm-usp-text {
  font-size: 14px;
  line-height: 1.2;
  width: 100%;
}

.blob {
  display: block !important;
  background: black;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  height: 10px;
  width: 10px;
  transform: scale(1);
  animation: pulse-black 2s infinite;
  margin-left: 5px;
  margin-right: unset;
}

.blob.green {
  background: #54c63a;
  box-shadow: 0 0 0 0 #54c63a;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 #54c63a;
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
  }
}

.blob.orange {
  background: #f4af29;
  box-shadow: 0 0 0 0 #f4af29;
  animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 #f4af29;
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
  }
}

.blob.red {
  background: #cf1b1b;
  box-shadow: 0 0 0 0 #cf1b1b;
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red{
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 #cf1b1b;
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
  }
}

/*cstm gif usp items*/
.cstm-gif-usp svg,
.cstm-gif-usp lottie-player {
  height: 30px !important;
  width: 30px !important;
}

/*cstm payment icons*/
.cstm-payment-icons {
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

/*cstm customer proof*/
.cstm-customer-proof {
  display: flex;
  gap: 15px;
  align-items: center;
  width: fit-content;
  margin: auto;
}

.cstm-customer-proof__text {
  width: calc(100% - 50px);
  line-height: 1.2;
}

.cstm-customer-proof__image-wrapper {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  overflow: hidden;
}

.cstm-customer-proof__image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.cstm-customer-proof__text{
  line-height: 1.4;
  margin: unset;
}

/*cstm ambassadors block*/
.cstm-ambassadors-block{
  display: flex;
  align-items: center;
  gap: 10px;
}

.cstm-ambassadors-block__image-wrapper{
  height: 45px;
  width: 45px;
  min-width: 45px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #5c5144;
}

.cstm-ambassadors-block__image-wrapper img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/*cstm accordion*/
.accordion {
  width: 100%;
  border-top: 1px solid #ccc;
}

.accordion:last-child() {
  border-bottom: 1px solid #ccc;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cstm-accordion__icon{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: var(--primary-bg-light);
}

.accordion.active .cstm-accordion__icon{
  background: var(--primary-bg);
}

.accordion-header svg {
  transition: transform 0.3s ease;
}

.accordion.active .accordion-header svg {
  color: white;
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.accordion.active .accordion-content {
  padding-top: 15px;
  padding-bottom: 15px;
}

/*cstm sale box*/
.cstm-sale-box {
  text-align: center;
  padding: 20px;
  background-color: #f5f5f5;
  margin-bottom: 20px;
}

.cstm-sale-box__title {
  font-size: 18px;
  font-weight: 600;
  margin-top: unset;
  margin-bottom: 10px;
}

.cstm-sale-box__text {
  font-size: 14px;
  margin: unset; 
}

/*cstm usp row*/
.cstm-usp-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 2rem 0;
}

.cstm-usp-row__item {
  text-align: center;
}

.cstm-usp-row__item svg {
  height: 30px;
  width: auto;
  margin: auto;
}

.cstm-usp-row__item-text {
  font-size: 12px;
  line-height: 1.2;
  width: 100%;
  margin: unset;
}

/*cstm review slider*/
.swiper.cstm-review-swiper {
  position: relative;
  padding: 0 50px;
}

.swiper.cstm-review-swiper:before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background: var(--gradient-background);
}

.swiper.cstm-review-swiper:after {
  content: "";
  position: absolute;
  z-index: 3;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background: var(--gradient-background);
}

.color-scheme-1 .swiper.cstm-review-swiper:before, .color-scheme-1 .swiper.cstm-review-swiper:after {
  background: white;
}

.cstm-review-slider-section .swiper-button-next,
.cstm-review-slider-section .swiper-button-prev {
  display: flex !important;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  border: 1px solid rgb(140, 140, 140);
  z-index: 4;
}

.cstm-review-slider-section .swiper-button-next:after,
.cstm-review-slider-section .swiper-button-prev:after {
  font-size: 13px;
  font-weight: 800;
  color: rgb(140, 140, 140);
}

.cstm-review-slider__title {
  text-align: center;
  margin-bottom: 30px;
}

.cstm-review-item {
  width: auto;
  height: 160px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 2px;
}

.cstm-review-item__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cstm-review-item__rating {
  line-height: 1;
  margin-bottom: 12px;
}

.cstm-review-item__rating svg {
  width: 100px;
  height: auto;
  margin: unset !important;
}

.cstm-review-item__title {
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  margin: unset;
  margin-bottom: 10px;
}

.cstm-review-item__content {
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.2;
  margin: unset;
}

.cstm-review-item__meta {
  display: flex;
  gap: 3px;
  align-items: center;
  margin-top: auto;
}

.cstm-review-item__meta p {
  margin: unset;
  font-size: 12px;
}

.cstm-review-item__meta .cstm-review-item__author {
  margin: unset;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
}

.cstm-review-item__meta .cstm-review-item__date {
  color: rgba(0, 0, 0, 0.6);
}

.cstm-review-slider__footer {
  text-align: center;
  margin: 10px auto 5px;
  cursor: pointer;
}

.cstm-review-slider__footer svg {
  width: 80px;
  height: auto;
  margin: auto;
}

.cstm-review-slider__footer p {
  margin: unset;
}

/*cstm shipping timer*/
.cstm-shipping-timer {
  text-align: center;
  padding: 15px;
  background: #c7bc974f;
  width: 100%;
  margin: 20px 0;
}

.cstm-shipping-timer p {
  font-size: 12px;
  margin: unset;
}

/*cstm product color selector*/
.cstm-prod-colors-selector{
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.cstm-prod-color-item{
  display: block !important;
  height: 95px;
  width: 62px;
  border: 2px solid transparent;
  padding: 2px; 
}

.cstm-prod-color-item.current{
  border: 2px solid black;
}

.cstm-prod-color-item img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/*cstm ugc video slider*/
.cstm-ugc-meta-video-slider__title {
  font-size: 18px;
  text-transform: uppercase;
}
.ugc-vids-wrapper-outer {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: 3px;
}

.ugc-vids-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.ugc-vids-wrapper .cstm-ugc-meta-video {
  min-width: 150px;
  aspect-ratio: 9/16;
  border-radius: 5px;
  overflow: hidden;
}

.ugc-vids-wrapper .cstm-ugc-meta-video .ugc-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cstm-ugc-meta-video {
  position: relative;
  display: inline-block;
}

.ugc-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity 0.3s;
}

.ugc-play-overlay::before {
  content: "";
  display: block !important;
  width: 0;
  height: 0;
  border-left: 15px solid white;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.ugc-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

/*store info gif slider/wrapper*/
.gif-items-wrapper .gif-item {
  text-align: center;
}

.gif-items-wrapper .gif-item-gif {
  height: 70px;
  width: auto;
}

.gif-items-wrapper .gif-title {
  font-size: 20px;
  font-weight: 600;
  margin: unset;
  margin-top: 15px;
}

.gif-items-wrapper .gif-desc {
  font-size: 14px;
  margin-top: 10px;
}

.guarantee-swiper .swiper-pagination {
  position: relative;
  top: 0;
  margin-top: 20px;
}

.guarantee-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: black;
}

@media only screen and (max-width: 700px) {
  .gif-items-wrapper .gif-item-gif {
    height: 36px;
  }

  .gif-items-wrapper .gif-title {
    font-size: 21px;
    font-weight: 600;
    margin: unset;
    margin-top: 10px;
  }
}

/*cstm feat coll*/
.cstm-feat-coll-header:has(.collection__view-all){
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cstm-feat-col-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

@media only screen and (max-width: 750px) {
  .cstm-feat-col-row{
    grid-template-columns: repeat(2, 1fr);
  }
}

/*cstm product card*/
.cstm-product-card-wrapper .card__inner{
  position: relative;
}

.cstm-product-card-wrapper .image-overlay-link{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cstm-product-card-wrapper .quick-add{
  position: absolute;
  bottom: 10px;
  right: 10px;
  margin: unset;
  z-index: 2;
}

.cstm-product-card-wrapper .quick-add__submit{
  width: 32px;
  height: 32px;
  min-height: unset;
  min-width: unset;
}

.cstm-product-card-wrapper .quick-add__submit:before, .cstm-product-card-wrapper .quick-add__submit:after{
  box-shadow: unset;
}

.cstm-product-card-wrapper .quick-add__submit:hover:before, .cstm-product-card-wrapper .quick-add__submit:hover:after{
  box-shadow: unset;
}

.cstm-product-card-wrapper .quick-add__submit:hover svg{
  transform: rotate(90deg);
}

.cstm-product-card-wrapper .quick-add__submit{
  border-radius: 3px;
  border: 1px solid rgb(0 0 0 / 12%);
}

.cstm-product-card-wrapper .quick-add__submit svg{
  height: 12px;
  width: auto;
  transition: transform 0.2s ease;
}

.cstm-product-card-wrapper .quick-add .icon-wrap{
  margin: unset;
}

.cstm-product-sibling-picker{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: auto;
  max-width: 100%;
  margin: auto;
  overflow-x: auto;
}

.cstm-product-sibling-picker__trigger{
  cursor: pointer;
}

.cstm-product-sibling-picker__trigger.active svg{
  border: 2px solid black;
}

.cstm-product-sibling-picker__trigger svg{
  height: 25px;
  width: 25px;
  border-radius: 50%;
}

.cstm-card-product{
  display: none;
}

.cstm-card-product.active{
  display: block;
}

.card__inner.gradient{
  background: unset;
}

.card__badge .badge{
  text-transform: uppercase;
  font-size: 12px;
  border: unset;
}

@media only screen and (min-width: 1024px) {
  .cstm-product-card-wrapper .quick-add{
    display: none;
  }

  .cstm-product-card-wrapper .card__inner:hover .quick-add{
    display: flex;
  }
}

/*cstm shop the look section*/
.cstm-stl-row{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 35px;
  overflow: hidden;
  max-width: 100%;
}

.cstm-stl__image-col{
  height: auto;
  width: 100%;
}

.cstm-stl__image-wrapper{
  height: 500px;
  width: auto;
  overflow: hidden;
}

.cstm-stl__image-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cstm-stl__prod-col{
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  margin: auto;
  padding: 25px 0;
}

.cstm-stl-row .cstm-product-group{
  padding: 20px;
  background: white;
  border-radius: 10px;
}

.swiper-scrollbar.cstm-stl-swiper-scrollbar{
  position: relative;
  margin-top: 25px;
}

.swiper-scrollbar-drag{
  display: block !important;
}

@media only screen and (max-width: 750px) {
  .cstm-stl-row{
    grid-template-columns: repeat(1, 1fr);
  }

  .cstm-stl__image-wrapper{
    height: 350px;
  }

  .cstm-stl__prod-col{
    max-width: 90%;
  }
}

/*cstm collection grid*/
.cstm-collection-grid__wrapper{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cstm-collection-grid__item{
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 400px; 
  padding: 25px;
  overflow: hidden;
}

.cstm-collection-grid__item img{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cstm-collection-grid__item:hover img{
  transform: scale(1.05);
}

.cstm-collection-grid__item:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.cstm-collection-grid__item-content{
  position: relative;
  color: white;
  z-index: 2;
}

.cstm-collection-grid__item-title{
  font-size: 20px;
  margin: 0;
}

.cstm-collection-grid__item-link{
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media only screen and (max-width: 768px) {
  .cstm-collection-grid__wrapper{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 550px) {
  .cstm-collection-grid__item{
    height: 250px;
  }

  .cstm-collection-grid__wrapper{
    grid-template-columns: repeat(2, 1fr);
  }
}

/*cstm sticky atc*/
@media only screen and (min-width: 768px) {
  .cstm-sticky-atc-btn-mob {
    display: none !important;
  }

  .desktop-sticky-atc-box {
    display: none;
    position: fixed;
    z-index: 10;
    bottom: 20px;
    right: 20px;
    padding: 15px;
    width: 550px;
    background: #fff;
    border: 1px solid #0000001f;
  }

  .desktop-sticky-atc-box-inner {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
  }

  .desktop-sticky-atc-box-inner .image-wrapper {
    height: 100px;
    width: 80px;
  }

  .desktop-sticky-atc-box-inner .image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .desktop-sticky-atc-box-inner .product-meta-info {
    width: 250px;
  }

  .desktop-sticky-atc-box-inner .product-meta-info p {
    line-height: 1.2;
    margin: unset; 
  }

  .cstm-sticky-atc-btn-desk {
    font-size: 12px;
    text-transform: unset;
  }

  .cstm-sticky-atc-button {
    display: none !important;
  }

  .product-form__submitdesktop-sticky-atc {
    font-size: 12px;
    padding: 10px;
    width: fit-content;
    height: fit-content;
  }
}

@media only screen and (max-width: 768px) {
  .cstm-sticky-atc-btn-mob {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 5;
    width: 90%;
    margin: auto;
  }
  .desktop-sticky-atc-box {
    display: none !important;
  }
  .product-form__submit.cstm-sticky-atc-button {
    display: none;
    position: fixed !important;
    bottom: 25px;
    width: 90%;
    margin: auto;
    z-index: 10;
  }
}

/*cstm rating widget*/
.cstm-rating-widget{
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.cstm-rating-widget svg{
  height: 16px;
  width: auto;
}

.cstm-rating-widget__text{
  font-size: 14px;
  margin: unset;
}

.product__info-container:has(.cstm-rating-widget) .product__title{
  margin-top: unset;
}

/*cstm scrolling announcement bar*/
.cstm-announcement-bar {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 14px 0;
}

.cstm-announcement-bar__track {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  gap: 100px;
  will-change: transform;
  animation: cstm-marquee 22s linear infinite;
}

/* Each item */
.cstm-announcement-bar__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

/* Text */
.cstm-announcement-bar__item p {
  margin: 0;
  white-space: nowrap;
}

@keyframes cstm-marquee {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cstm-announcement-bar__track {
    animation: none;
    transform: none;
  }
}

/*pre order text*/
.cstm-pre-order-delivery-text{
  font-size: 18px;
}

/*footer*/
.footer__list-social.align-start{
  justify-content: flex-start;
}

.footer__newsletter.newsletter-form.text-block-newsletter{
  margin: unset;
  margin-top: 20px
}

/*misc*/
.product-form__buttons{
  max-width: 100% !important;
}

.product-form__buttons button.product-form__submit.button{
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 2px 3px 5px #0000009c;
}

@media screen and (max-width: 749px) {
  .thumbnail-list__item.slider__slide {
    width: 70px !important;
  }
}

@media screen and (min-width: 750px) {
  .thumbnail-list__item.slider__slide {
    width: 70px !important;
  }
}