/** Shopify CDN: Minification failed

Line 118:0 Unexpected "}"
Line 210:2 Unexpected "0%"
Line 214:2 Unexpected "50%"
Line 217:0 Unexpected "}"

**/
.price {
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  color: rgb(var(--color-foreground));
}

.price > * {
  display: inline-block;
  vertical-align: top;
}

.price.price--unavailable {
  visibility: hidden;
}

.price--end {
  text-align: right;
}

.price .price-item {
  display: inline-block;
  margin: 0 1rem 0 0;
}

.price__regular .price-item--regular {
  margin-right: 0;
}

.price:not(.price--show-badge) .price-item--last:last-of-type {
  margin: 0;
}

@media screen and (min-width: 750px) {
  .price {
    margin-bottom: 0;
  }
}

.price--large {
  font-size: 1.6rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  letter-spacing: 0.13rem;
}

@media screen and (min-width: 750px) {
  .price--large {
    font-size: 1.8rem;
  }
}

.price--sold-out .price__availability,
.price__regular {
  display: block;
}

.price__sale,
.price__availability,
.price .price__badge-sale,
.price .price__badge-sold-out,
.price--on-sale .price__regular,
.price--on-sale .price__availability {
  display: none;
}

.price--sold-out .price__badge-sold-out,
.price--on-sale .price__badge-sale,
.volume-pricing--sale-badge .price__badge-sale {
  display: inline-block;
}

.volume-pricing--sale-badge .price__badge-sale {
  margin-left: 0.5rem;
}

.price--on-sale .price__sale {
  display: initial;
  flex-direction: row;
  flex-wrap: wrap;
}

.price--center {
  display: initial;
  justify-content: center;
}

.price--on-sale .price-item--regular {
  text-decoration: line-through;
  color: rgba(var(--color-foreground), 0.75);
  font-size: 1.3rem;
}

.unit-price {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.04rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  margin-top: 0.2rem;
  color: rgba(var(--color-foreground), 0.7);
}
.price .price-item--sale,
span.price-item.price-item--sale.price-item--last {
  font-weight: 900 !important;
}
@keyframes blinkDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

}
/* PRECIO FINAL GRANDE Y PROTAGONISTA */

span.price-item.price-item--sale.price-item--last {
  font-size: 80px !important;
  font-weight: 800 !important;
  color: #d10000 !important;
  line-height: 1 !important;
}

/* PRECIO TACHADO MÁS PEQUEÑO */

.price__regular .price-item--regular,
s.price-item.price-item--regular {
  font-size: 14px !important;
  opacity: 0.6 !important;
  font-weight: 500 !important;
}
/* Punto parpadeante últimas unidades */

.stock-dot {
  width: 8px;
  height: 8px;
  background: #e56c00;
  border-radius: 50%;
  display: inline-block;
  animation: blinkDot 1.5s infinite;
}

/* Animación */

@keyframes blinkDot {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}
.stock-alert-text {
  color: #e65c00;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
}

.stock-alert-dot {
  width: 8px;
  height: 8px;
  background: #e65c00;
  border-radius: 50%;
  display: inline-block;
animation: svPulse 1.4s ease-in-out infinite;
box-shadow: 0 0 0 rgba(225,29,72,.4);
position: relative;
}
.stock-alert-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #e65c00;
  animation: svRing 1.4s ease-out infinite;
  z-index: -1;
}

@keyframes svPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.18);
    opacity: 0.85;
  }
}

@keyframes svRing {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }

  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}
  
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}
/* SOLO página de producto */

.product__info-container .price .price-item--sale,
.product__info-container span.price-item.price-item--sale.price-item--last {
  color: #d10000 !important;
  font-size: 26px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

/* Precio tachado SOLO página producto */

.product__info-container .price .price-item--regular,
.product__info-container s.price-item.price-item--regular {
  font-size: 16px !important;
  opacity: 0.65 !important;
  font-weight: 500 !important;
}
/* Precio final grande SOLO en página de producto */
[id^="ProductInfo-template"] span.price-item.price-item--sale.price-item--last {
  font-size: 24px !important;
  font-weight: 900 !important;
  color: #d10000 !important;
  line-height: 1 !important;
}