/** Shopify CDN: Minification failed

Line 143:18 Unexpected "{"
Line 143:27 Expected ":"
Line 151:18 Unexpected "{"
Line 151:27 Expected ":"
Line 160:18 Unexpected "{"
Line 160:27 Expected ":"
Line 166:18 Unexpected "{"
Line 166:27 Expected ":"
Line 186:18 Unexpected "{"
Line 186:27 Expected ":"
... and 12 more hidden warnings

**/
/* PRODUCT PAGE */
.sku_product_page{
    display: flex;
    gap: 5px;
}
.sku_title{
    font-weight: bolder;
    color: #8a17a9;
}

/*product card*/
.product-card__sku {
    padding: 1rem 0 0 0;
    opacity: .5;
    font-size: calc(var(--font-product-size)*0.8);
}

.wishlist-remove-btn {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

[data-wishlist-grid] .wishlist-remove-btn {
  display: flex;
}

/* Wishlist / Preferiti – cuore solo */

.container--wishlist {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  color: #8a17a9;
}

.button--wishlist {
  .favorite-icon {
    width: 32px;
    height: 32px;
  }

  .icon-heart--filled {
    display: none;
  }

  .icon-heart--outline {
    display: inline-block;
  }

  &.is-active {
    .icon-heart--filled {
      display: inline-block;
    }

    .icon-heart--outline {
      display: none;
    }
  }
}


/*
.product-favorite-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #742C7F;  
  display: inline-flex;
  align-items: center;
}

.product-favorite-button:hover {
  opacity: 0.85;
}

.product-favorite-button 
}



.product-favorite-button .favorite-icon--on {
  display: none;
}

.product-favorite-button.is-active .favorite-icon--on {
  display: block;
}

.product-favorite-button.is-active .favorite-icon--off {
  display: none;
}

*/


.custom-icon{
  width: 5vw !important;
  max-width: 1000px;
  height: auto;
}

@media (max-width: 768px) {
  .counter-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  }

  .custom-icon{
    width: 4vw !important;
  }
}

#shopify-section-{{ section.id }} .counter-card {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  gap: 1vw;
}

#shopify-section-{{ section.id }} .counter-icon {
  flex: 0 0 15px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#shopify-section-{{ section.id }} .custom-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

#shopify-section-{{ section.id }} .counter-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 72px;
}

.counter-heading {
    margin: 0;
    font-size: 3.3vw;
    line-height: 0.95;
}

@media (min-width: 2000px) {
    .counter-heading {
        font-size: 40px;
    }
}

#shopify-section-{{ section.id }} .counter-title {
    margin: 0;
    font-size: 1.5vw;
    line-height: 1.1;
    font-weight: 500;
}
@media (min-width: 2000px) {

#shopify-section-{{ section.id }} .counter-title {
        font-size: 30px;
    }
}
@media (min-width: 2000px) {
.counter-card{
  gap: 10px;
}
}

@media screen and (max-width: 749px) {

  #shopify-section-{{ section.id }} .counter-icon {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }

  #shopify-section-{{ section.id }} .custom-icon {
    width: 56px !important;
    height: 56px !important;
  }

  #shopify-section-{{ section.id }} .counter-content {
    min-height: 56px;
  }

  #shopify-section-{{ section.id }} .counter-heading {
    font-size: 42px;
  }

  #shopify-section-{{ section.id }} .counter-title {
    font-size: 20px;
  }
}