/** Shopify CDN: Minification failed

Line 176:8 Expected ":"

**/
/*cstm rating widget*/
a:has(.cstm-rating-widget){
  display: block;
  margin-bottom: 15px;
  text-decoration: unset;
  color: #000;
}

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

.cstm-rating-widget__stars{
  display: flex;
  align-items: center;
}

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

/*cstm USP*/
.cstm-usps{
  margin: 20px 0;
}

.cstm-usp-item{
  display: flex;
  align-items: center;
  gap: 8px;
}

.cstm-usp-item:not(:last-child){
  margin-bottom: 8px;
}

.cstm-usp-item .cstm-usp-icon{
  height: 22px;
  width: auto;
}

.cstm-usp-item .cstm-usp-text{
  font-size: 16px;
  margin: unset;
}

.cstm-usp-item .cstm-usp-text.green{
  color: #077f06;
}

.cstm-usp-item .cstm-usp-text.red{
  color: #bc0000;
}

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

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

.blob.red {
  background: #bc0000;
  box-shadow: 0 0 0 0 #bc0000;
  animation: pulse-red 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);
  }
}

@keyframes pulse-red {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 #bc0000;
  }
  
  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);
  }
}

@media only screen and (max-width: 576px) {
  .cstm-usp-item .cstm-usp-text{
    font-size: 14px;
  }
}


/*price styling*/
.product__price--compare{
  color: #bc0000;
}

.product__price.on-sale{
  font-weight: 700;
  color: #27ae22;
}

.grid-product__price--original{
  color: #bc0000;
}

.grid-product__price:has(.grid-product__price--original){
  font-weight: 700;
  color: #27ae22;
}

.grid-product__price:has(.grid-product__price--original) span{
  font-weight: 500;
}

/*atc*/
.product-block:has(.product-single__form){
  margin-bottom: 10px;
}

/*cstm payment icons*/
.cstm-payment-icons{
  margin-bottom: 20px;
}

.cstm-payment-icons__text{
  font-size: 11px;
  text-align: center;
  margin-bottom: 8px;
}

.cstm-payment-icons__icons-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.cstm-payment-icons__icon{
  height 30px;
  width: auto;
}

/*sale announce box*/
.cstm-sale-announce-box{
  padding: 12px 14px;
  margin-bottom: 25px;
  color: #e53935;
  background: #fdecea;
  border-radius: 6px;
  border: 1px solid #fddcdc;
}

.cstm-sale-an-box__header{
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.cstm-sale-an-box__header p{
  font-weight: 700;
}

.cstm-sale-announce-box p{
  font-size: 13px;
  margin: unset;
}

.cstm-sale-announce-box p b{
  color: #e53935;
}

.cstm-sale-an-box__text em{
  background: #ffffff;
  padding: 1px 5px;
  border-radius: 20px;
  font-weight: 700;
  font-style: unset;
  color: #a62b2b;
}

.cstm-sale-announce-box .cstm-sale-an-box__text-small{
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 8px;
}

/*cstm review highlight*/
.cstm-rev-highlight{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}

.cstm-rev-highlight__image-wrapper{
  position: relative;
}

.cstm-rev-highlight__image-wrapper svg{
  position: absolute;
  top: 5px;
  right: 0;
  width: 14px;
  height: 14px;
}

.cstm-rev-highlight__image-wrapper-inner{
  height: 50px;
  width: 50px;
  min-width: 50px;
  border: 1px solid #b18b7d;
  border-radius: 50%;
  overflow: hidden;
}

.cstm-rev-highlight__image-wrapper-inner img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.cstm-rev-highlight__text{
  font-size: 14px;
  margin: unset;
}

/*seconday menu mobile*/
.mobile-nav__item:not(.mobile-nav__item--secondary)+.mobile-nav__item--secondary{
  display: none;
}

/*cstm rating section review section*/
.cstm-review-rating__inner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cstm-review-rating__text{
  font-size: 20px;
  font-weight: 700;
  margin: unset;
}

.cstm-review-rating__stars{
  display: flex;
  align-items: center;
  gap: 3px;
}

.cstm-review-rating__sub-text{
  text-align: center;
}

.cstm-review-rating__sub-text b{
  text-decoration: underline;
}

.testimonial-stars{
  color: #d4af37;
}

@media only screen and (max-width: 768px) {
  .cstm-review-rating__text{
    font-size: 18px;
  }
}

/*misc*/
.section-header.margin-s{
  margin-bottom: 15px !important;
}

.section-header.margin-s h2{
  margin-bottom: unset;
}

@media only screen and (max-width: 768px) {
  .product-single__meta {
    text-align: left;
  }
}