/** Shopify CDN: Minification failed

Line 22:14 Expected identifier but found whitespace
Line 22:17 Unexpected "{"
Line 22:26 Expected ":"
Line 26:10 Expected identifier but found whitespace
Line 26:17 Unexpected "{"
Line 26:26 Expected ":"
Line 31:10 Expected identifier but found whitespace
Line 31:12 Unexpected "{"
Line 31:21 Expected ":"
Line 31:58 Unexpected "20px"
... and 43 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-liquid (INDEX:14) */
.pi-section {
  --pi-accent:  {{ section.settings.accent_color | default: '#e63946' }};
  --pi-text:    #111827;
  --pi-muted:   #6b7280;
  --pi-border:  #e5e7eb;
  --pi-bg:      {{ section.settings.bg_color | default: '#ffffff' }};
  --pi-radius:  12px;
  --pi-radius-sm: 7px;

  background: var(--pi-bg);
  padding: {{ section.settings.pad_top | default: 56 }}px 20px {{ section.settings.pad_bottom | default: 56 }}px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
  color: var(--pi-text);
}

.pi-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: {{ section.settings.max_width | default: 1200 }}px;
  margin: 0 auto;
  align-items: start;
}

/* ─── COLUMNA IZQUIERDA ─── */
.pi-left {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Imagen principal */
.pi-main-wrap {
  border-radius: var(--pi-radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f3f4f6;
  width: 100%;
}

.pi-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.pi-main-wrap:hover .pi-main-img {
  transform: scale(1.04);
}

.pi-main-img--ph {
  width: 100%;
  height: 100%;
}

/* Miniaturas */
.pi-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pi-thumb {
  width: 76px;
  height: 76px;
  border-radius: var(--pi-radius-sm);
  border: 2px solid var(--pi-border);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  flex-shrink: 0;
  transition: border-color .2s, transform .15s;
}

.pi-thumb:hover {
  border-color: var(--pi-accent);
  transform: translateY(-2px);
}

.pi-thumb--active {
  border-color: var(--pi-accent);
}

.pi-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── COLUMNA DERECHA ─── */
.pi-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 6px;
}

/* Título */
.pi-title {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--pi-text);
  margin: 0;
}

/* Rating */
.pi-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pi-rating__stars {
  display: flex;
  gap: 3px;
}

.pi-star {
  width: 22px;
  height: 22px;
}

.pi-star--on {
  fill: #f4b942;
}

.pi-star--off {
  fill: none;
  stroke: #d1d5db;
  stroke-width: 1.5;
}

.pi-rating__score {
  font-size: 15px;
  font-weight: 700;
  color: var(--pi-text);
}

.pi-rating__count {
  font-size: 14px;
  color: var(--pi-muted);
}

/* Urgencia */
.pi-urgency {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff8ed;
  border: 1px solid #fcd28a;
  border-left: 4px solid #f59e0b;
  border-radius: var(--pi-radius-sm);
  padding: 11px 14px;
}

.pi-urgency__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f59e0b;
  flex-shrink: 0;
  animation: pi-pulse 1.3s ease-in-out infinite;
}

.pi-urgency__text {
  font-size: 14px;
  font-weight: 600;
  color: #7c5c00;
  line-height: 1.4;
}

@keyframes pi-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .45; transform: scale(.7); }
}

/* ─── URGENCIA PLAIN ─── */
.pi-urgency-plain {
  font-size: 14px;
  font-weight: 600;
  color: var(--pi-text);
  margin: 0;
  line-height: 1.5;
}

/* ─── ICONO + TEXTO ─── */
.pi-icon-text {
  display: flex;
  align-items: center;
  gap: 11px;
}

.pi-icon-text__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pi-accent);
  flex-shrink: 0;
}

.pi-icon-text__icon svg {
  width: 18px;
  height: 18px;
}

.pi-icon-text__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.pi-icon-text__label {
  font-size: 15px;
  color: var(--pi-text);
  line-height: 1.45;
}

/* ─── BOTÓN COMPRA ─── */
.pi-buy-wrap form { margin: 0; }

.pi-btn--buy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: var(--pi-radius-sm);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
}

.pi-btn--buy:hover:not(:disabled) {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}

.pi-btn--buy:active:not(:disabled) { transform: translateY(0); }

.pi-btn--buy:disabled {
  opacity: .5;
  cursor: not-allowed;
  box-shadow: none;
}

/* ─── PAGO CONTRA ENTREGA ─── */
.pi-cod {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: var(--pi-radius-sm);
  border: 2px solid;
}

.pi-cod__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pi-cod__text {
  font-size: 15px;
  font-weight: 700;
}

/* ─── REVIEW CON FOTO ─── */
.pi-review {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: #f9fafb;
  border-radius: var(--pi-radius-sm);
  border-left: 4px solid var(--pi-accent);
  padding: 14px 16px;
}

.pi-review__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--pi-border);
  background: #e5e7eb;
}

.pi-review__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pi-review__avatar--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.pi-review__avatar--empty svg {
  width: 28px;
  height: 28px;
}

.pi-review__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.pi-review__text {
  font-size: 14px;
  font-style: italic;
  color: var(--pi-text);
  margin: 0;
  line-height: 1.55;
}

.pi-review__stars {
  display: flex;
  gap: 2px;
}

.pi-review__stars .pi-star {
  width: 14px;
  height: 14px;
}

.pi-review__author {
  font-size: 12px;
  font-weight: 600;
  color: var(--pi-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ─── ACCORDION ─── */
.pi-accordion {
  border-top: 1px solid var(--pi-border);
  border-bottom: 1px solid var(--pi-border);
  margin-top: -1px;
}

.pi-accordion__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 2px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--pi-text);
  user-select: none;
}

.pi-accordion__header::-webkit-details-marker { display: none; }

.pi-accordion__img-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.pi-accordion__title { flex: 1; }

.pi-accordion__chevron {
  width: 18px;
  height: 18px;
  color: var(--pi-muted);
  flex-shrink: 0;
  transition: transform .25s ease;
}

.pi-accordion[open] .pi-accordion__chevron {
  transform: rotate(180deg);
}

.pi-accordion[open] .pi-accordion__header {
  color: var(--pi-accent);
}

.pi-accordion__body {
  padding: 0 2px 14px 30px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--pi-muted);
}

.pi-accordion__body p { margin: 0 0 8px; }
.pi-accordion__body p:last-child { margin: 0; }

/* ─── TEXTO LIBRE ─── */
.pi-text-block {
  line-height: 1.65;
}

.pi-text-block p { margin: 0 0 8px; }
.pi-text-block p:last-child { margin: 0; }
.pi-text-block ul, .pi-text-block ol {
  padding-left: 20px;
  margin: 0 0 8px;
}
.pi-text-block a {
  color: var(--pi-accent);
  text-decoration: underline;
}

/* ─── SHIPS BY DATE ─── */
.pi-ships {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: var(--pi-radius-sm);
  border: 2px solid;
}

.pi-ships__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.pi-ships__icon svg {
  width: 100%;
  height: 100%;
}

.pi-ships__body {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  line-height: 1.4;
  flex: 1;
}

.pi-ships__label  { }
.pi-ships__suffix { }

.pi-ships__timer {
  font-size: 1.05em;
  letter-spacing: .02em;
}

.pi-ships__date {
  font-size: 1.02em;
}

/* ─── PRECIO ─── */
.pi-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pi-price-block__row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pi-price-block__original {
  color: #9ca3af;
  font-weight: 400;
  text-decoration: line-through;
  line-height: 1.3;
}

.pi-price-block__current {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.pi-price-block__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  white-space: nowrap;
}

.pi-price-block__shipping {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .pi-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pi-left {
    position: static;
  }

  .pi-title {
    font-size: 28px;
  }

  .pi-thumb {
    width: 64px;
    height: 64px;
  }
}
/* END_SECTION:custom-liquid */

/* START_SECTION:image-slider (INDEX:25) */
.ivs-section {
  --ivs-accent: {{ section.settings.accent_color | default: '#e63946' }};
  --ivs-bg:     {{ section.settings.bg_color | default: '#ffffff' }};

  background: var(--ivs-bg);
  padding: {{ section.settings.pad_top | default: 56 }}px 0 {{ section.settings.pad_bottom | default: 56 }}px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
}

.ivs-block-heading,
.ivs-block-desc {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.ivs-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.ivs-track-outer {
  flex: 1;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.ivs-track-outer:active { cursor: grabbing; }

.ivs-track {
  display: flex;
  gap: {{ section.settings.slide_gap | default: 16 }}px;
  padding: 8px {{ section.settings.side_padding | default: 20 }}px 16px;
  transition: transform 0.38s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.ivs-slide {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ivs-slide__media {
  width: 100%;
  background: #f3f4f6;
  position: relative;
  display: block;
}

.ivs-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.ivs-slide__media:hover .ivs-slide__img { transform: scale(1.03); }
.ivs-slide__img--ph { width: 100%; height: 100%; }

.ivs-slide__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ivs-slide__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.ivs-slide__url-error {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 13px;
  color: #9ca3af;
  padding: 20px;
  text-align: center;
  margin: 0;
}

.ivs-slide__caption { padding: 0 2px; }
.ivs-slide__caption-title { margin: 0 0 3px; line-height: 1.4; }
.ivs-slide__caption-sub   { margin: 0; line-height: 1.5; }

.ivs-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: {{ section.settings.arrow_bg | default: '#ffffff' }};
  color: {{ section.settings.arrow_color | default: '#111827' }};
  box-shadow: 0 2px 12px rgba(0,0,0,.14);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .2s, transform .15s, opacity .2s;
}

.ivs-arrow svg { width: 20px; height: 20px; }

.ivs-arrow:hover {
  background: var(--ivs-accent);
  color: #fff;
  transform: scale(1.08);
}

.ivs-arrow:disabled { opacity: .3; cursor: default; transform: none; }

.ivs-arrow--prev { margin-left: {{ section.settings.side_padding | default: 20 }}px; }
.ivs-arrow--next { margin-right: {{ section.settings.side_padding | default: 20 }}px; }

.ivs-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0 20px;
}

.ivs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: background .2s, width .2s;
}

.ivs-dot--active {
  background: var(--ivs-accent);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .ivs-arrow { width: 36px; height: 36px; }
  .ivs-arrow svg { width: 16px; height: 16px; }
  .ivs-arrow--prev { margin-left: 10px; }
  .ivs-arrow--next { margin-right: 10px; }
}
/* END_SECTION:image-slider */