/** Shopify CDN: Minification failed

Line 227:1 Unexpected "}"

**/
/* ========== BASE GENERAL DE PRECIO ========== */
.price {
  letter-spacing: 0.1rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 60%;
    text-align: center;
  font-size: 1.2rem;        /* aumenta tamaño */
  font-weight: 700;         /* negrita */
  color: #00000 !important; /* negro puro */
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.4); /* opcional: efecto glow sutil */
  max-width: 100%; /* Asegura que ocupe todo el ancho disponible del padre */
  box-sizing: border-box;

}

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

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

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

.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;
  }
}

/* ========== VISIBILIDAD CONDICIONAL ========== */
.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;
}

/* ========== ALINEACIÓN GENERAL DEL CONTENEDOR ========== */
.price .price__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
  width: 100%; /* ✅ fuerza el ancho al máximo de la caja de precios */
  max-width: 100%; /* ✅ previene contracción por padding o estructura */
  box-sizing: border-box; /* ✅ asegura que padding no desborde */
}

.price.price--on-sale .price__container {
  justify-content: flex-start;
}

.price__sale {
  flex-shrink: 0; /* Evita que se colapse si el contenido es estrecho */
}

.price--center .price__container {
  justify-content: center;
}

/* ========== ESTILO DE PRECIO POR UNIDAD ========== */
.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;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.7);
}

/* ========== AJUSTE WOWAROD: DISTRIBUCIÓN HORIZONTAL DE PRECIOS ========== */

/* Bloque principal de precios en oferta */
.price--on-sale .price__sale {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  flex-wrap: nowrap;
}

/* Si no hay precio anterior (solo precio actual), centrado */
.price__sale.price--solo {
  justify-content: center;
}

.price__sale.price--solo .price-final-wrapper {
  width: 100%;
  text-align: center;
}

/* Estructura lógica de wrappers */
.price-final-wrapper,
.price-compare-wrapper {
  display: block !important;
  align-items: center;
  white-space: nowrap;
  flex: 0 0 auto;
  width: auto !important;
}

.price-final-wrapper {
  width: 60%;
  text-align: left;
  justify-content: flex-start;
}

.price-compare-wrapper {
  width: 40%;
  text-align: right;
  justify-content: flex-end;
}

/* Estilo visual del precio anterior (tachado, gris) */
.price--on-sale .price-item--regular {
  text-decoration: line-through;
  color: rgba(225, 27, 44, 0.8); /* ⬆️ aumentamos opacidad */
  font-size: 1.2rem;
  font-weight: normal;
}

/* Forzar alineación horizontal del precio + moneda */
.price-item {
  display: inline-block;
  white-space: nowrap;
  vertical-align: middle;
  margin-right: 0.4rem;
  font-size: 2.6rem;
}

.price-values-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.price-display-wowarod {
  width: 100% !important;
  max-width: 100%;
  box-sizing: border-box;
}
/* === FORZAR ANCHO COMPLETO EN CONTENEDOR DE INFORMACIÓN === */
.product__info-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
/* ========== AJUSTE FINAL: FORZAR DISTRIBUCIÓN EN 60/40 ========== */


/* === WOWAROD: Control horizontal del bloque de precios === */
.price__sale {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 60%;
  text-align: left;
  font-size: 1.8rem;        /* aumenta tamaño */
  font-weight: 700;         /* negrita */
  color: #ffffff !important; /* blanco puro */
  line-height: 1.2;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.4); /* opcional: efecto glow sutil */
  max-width: 100%; /* Asegura que ocupe todo el ancho disponible del padre */
  box-sizing: border-box;
  font-weight: 700;         /* negrita */
}}

/* Precio actual */
.price-final-wrapper {
  flex: 0 0 60%;
  display: flex;
  justify-content: flex-start;
}

/* Precio anterior tachado */
.price-compare-wrapper {
  flex: 0 0 40%;
  display: flex;
  justify-content: flex-end;
}
/* Centrar precio final si no hay precio anterior */
.price__sale.price--solo .price-final-wrapper {
  width: 100%;
  justify-content: center;
}

.price__sale.price--solo .price-compare-wrapper {
  display: none;
}
.price_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.price__item--regular {
  width: 40%;
  text-align: left;
}

/* === WOWAROD — FORZAR TAMAÑO, COLOR Y ESTILO DEL PRECIO ACTUAL === */
.price__sale .price-item--sale {
  font-size: 2.6rem !important;    /* Tamaño más grande forzado */
  font-weight: 700 !important;     /* Negrita fuerte */
  color: #ffffff !important;       /* Blanco puro */
  line-height: 1.2 !important;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.4) !important; /* Contraste */
  display: inline-block !important;
  text-align: right;
  letter-spacing: 0.5px;
}
/* === WOWAROD — Ajuste a contenedores de precio === */
.price__sale,
.price-final-wrapper,
.price__sale .price-item--sale {
  max-width: 100% !important;
  flex-grow: 1 !important;
  flex-shrink: 1 !important;
}
/* Contenedor general de precios */
.price__container {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px; /* Separación entre precios */
  width: 100%;
  padding-top: 8px;
  padding-bottom: 0;
}
/* Precio anterior tachado */
.price-item--compare {
  font-size: 1rem;
  font-weight: 500;
  color: #cc0000;        /* Rojo fuerte */
  text-decoration: line-through;
}
@media screen and (max-width: 749px) {
  .price__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .price-item--compare {
    align-self: flex-start;
  }
}










/* SOLO para precios regulares sin compare_at_price (ej: LUMINA) */
.card .price:not(.price--on-sale) .price__regular .price-item--regular {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: #000 !important;
  text-decoration: none !important;
  text-shadow: none !important;
  display: inline-block;
  text-align: center;
}
.card .price:not(.price--on-sale) .price__container {
  justify-content: center !important;
  align-items: center;
  padding: 0;
  gap: 0;
  width: 100%;
  flex-wrap: nowrap;
}
/* === CORRECCIÓN: Forzar precio blanco en tarjetas con fondo negro === */
.card .price:not(.price--on-sale) .price__regular .price-item--regular {
  color: #ffffff !important;  /* blanco puro */
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3); /* contraste */
}

.card .price--on-sale .price-item--sale {
  color: #ffffff !important;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.4) !important;
}

.card .price--on-sale .price-item--regular {
  color: rgba(225, 27, 44, 0.9) !important; /* tachado en rojo suave */
}
