/** Shopify CDN: Minification failed

Line 13:49 Expected ":"
Line 620:0 Unexpected "}"

**/
/* ============================================================
   QUICK VIEW — styles
   Compatible con Dawn (Online Store 2.0)
   ============================================================ */

/* ---------- Overlay / backdrop ---------- */
#quick-view-modal { background:rgba(0,0,0,0.3); }
.qv-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.qv-overlay:not([hidden]) {
  opacity: 1;
  pointer-events: all;
}

/* hidden attr override para animar correctamente */
.qv-overlay[hidden] {
  display: flex !important;
}

.qv-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

/* ---------- Modal container ---------- */
.qv-modal {
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
  width: 100%;
  max-width: 1020px;
  max-height: 90vh;
  overflow: hidden;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.qv-overlay:not([hidden]) .qv-modal {
  transform: translateY(0) scale(1);
}

.qv-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  border: none;
  background: #f4f4f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #222;
  transition: background 0.15s ease, transform 0.15s ease;
}

.qv-close:hover {
  background: #e8e8e4;
  transform: scale(1.08);
}

.qv-close svg {
  width: 16px;
  height: 16px;
}

/* ---------- Layout interior ---------- */
.qv-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  max-height: 90vh;
}

@media (max-width: 768px) {
  .qv-inner {
    grid-template-columns: 1fr;
    max-height: 100%;
    overflow-y: auto;
  }
}

/* ---------- Galería ---------- */
.qv-gallery {
  background: #faf9f5;
  border-radius: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /*padding: 2.5rem 2rem;*/
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .qv-gallery {
    border-radius: 20px 20px 0 0;
    min-height: 320px;
  }
}

.qv-gallery__main {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.qv-gallery__track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.qv-gallery__slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qv-gallery__slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.qv-gallery__slide img:hover {
  transform: scale(1.04);
}

/* Navegación flechas */
.qv-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.qv-nav:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
  transform: translateY(-50%) scale(1.08);
}

.qv-nav--prev { left: 0; }
.qv-nav--next { right: 0; }

.qv-nav[hidden] { display: none; }

/* Dots */
.qv-gallery__dots {
  display: flex;
  gap: 6px;
  margin-top: 1.25rem;
}

.qv-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.qv-dot.is-active {
  background: #111;
  transform: scale(1.3);
}

/* Badge colección */
.qv-badge { display:none !important;
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #111;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

/* ---------- Info panel ---------- */
.qv-info {
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  justify-content:center;
}

@media (max-width: 768px) {
  .qv-info {
    padding: 1.5rem;
  }
}

.qv-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 0.25rem;
  line-height: 1.2;
}

.qv-subtitle {
  font-size: 0.9rem;
  color: #888;
  margin: 0 0 1.1rem;
}

/* Precios */
.qv-price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.qv-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
}

.qv-compare {
  font-size: 1rem;
  color: #aaa;
  text-decoration: line-through;
}

.qv-discount-badge {
  font-size: 0.8rem;
  font-weight: 600;
  background: #d4f7e0;
  color: #1a7a40;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Descripción corta */
.qv-desc {
  font-size: 16px;
  color: #000;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.qv-desc a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Variantes ---------- */
.qv-variants {
  margin-bottom: 1.25rem;
}

.qv-variants__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin-bottom: 0.5rem;
}

.qv-variants__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.qv-variant-btn {
  padding: 6px 14px;
  font-size: 0.85rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  color: #333;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.qv-variant-btn:hover {
  border-color: #999;
}

.qv-variant-btn.is-selected {
  border-color: #111;
  background: #111;
  color: #fff;
}

.qv-variant-btn.is-unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ---------- Cantidad ---------- */
.qv-qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.qv-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid #ddd;
  border-radius: 50px;
  overflow: hidden;
  height: 44px;
}

.qv-qty__btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s ease;
}

.qv-qty__btn:hover {
  background: #f4f4f0;
}

.qv-qty__input {
  width: 44px;
  text-align: center;
  border: none;
  font-size: 2rem;
  color: #000;
  background: transparent;
  -moz-appearance: textfield;
}

.qv-qty__input::-webkit-inner-spin-button,
.qv-qty__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Wishlist */
.qv-wishlist { display:none !important;
  width: 44px;
  height: 44px;
  border: 1.5px solid #ddd;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #777;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  flex-shrink: 0;
}

.qv-wishlist:hover,
.qv-wishlist.is-active {
  border-color: #e8304a;
  color: #e8304a;
}

.qv-wishlist.is-active svg path {
  fill: #e8304a;
}

/* ---------- Botones de acción ---------- */
.qv-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.qv-btn {
  width: 100%;
  padding: 13px 20px;
  border-radius: 50px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
  position: relative;
  overflow: hidden;
}

.qv-btn:active {
  transform: scale(0.98);
}

.qv-btn--primary {
  font-weight:500;
  font-size:16px;
  background: #ffed00;
  border: 1px solid #D8C200;
  color: #111;
}

.qv-btn--primary:hover {
  background: #000;
  border-color: #000;
  color:#fff;
}

.qv-btn--primary.is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qv-btn--secondary {
  font-weight:500;
  background: #FFF9ED;
  border:1px solid #D6C9B0;
  color: #000;
  font-size:16px;
}

.qv-btn--secondary:hover {
  border-color: #000;
  border-width:1px;
  color: #000;
}

.qv-btn--secondary.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Spinner en botón */
.qv-btn.is-loading {
  pointer-events: none;
  opacity: 0.75;
}

/* Link ver producto completo */
.qv-full-link {
  font-size: 14px;
  color: #888;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-align: center;
  display: block;
  transition: color 0.15s ease;
}

.qv-full-link:hover {
  color: #333;
}

/* ---------- Trigger button — lupa fija esquina superior izquierda ---------- */
.qv-trigger {
  position: absolute;
  left: 0.65rem;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  /* Empieza invisible */
  opacity: 0;
  transition: opacity 0.3s ease 0.8s, /* delay de 0.8s antes de aparecer */
              background 0.15s ease,
              color 0.15s ease,
              transform 0.15s ease,
              box-shadow 0.15s ease;
}

/* Clase que activa la visibilidad */
.qv-trigger.is-ready {
  opacity: 1;
}

.qv-trigger img { width: 45px !important; height:45px !important; }

.qv-trigger:hover img {
  content: url("/cdn/shop/files/icon-add-cart-hover.svg?v=1778103937");
}

.qv-trigger svg {
  display: block;
  flex-shrink: 0;
}

/* ---------- Toast de confirmación ---------- */
.qv-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: #111;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.qv-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Loader skeleton ---------- */
.qv-skeleton {
  background: linear-gradient(90deg, #f0f0ec 25%, #e8e8e4 50%, #f0f0ec 75%);
  background-size: 200% 100%;
  animation: qv-shimmer 1.4s infinite;
  border-radius: 8px;
}

@keyframes qv-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  .qv-modal {
    border-radius: 16px;
    max-height: 95vh;
  }

  .qv-title {
    font-size: 1.3rem;
  }

  .qv-price {
    font-size: 1.2rem;
  }

}
@media (max-width: 600px) {
  .qv-trigger svg { width:16px !important; }
  .qv-trigger {  width:32px; height:32px; padding:0; }
}

@media (max-width: 767px) {
    .qv-modal{ overflow-y:scroll; }
}

@media (min-width: 1440px) {
    .qv-trigger img { width: 65px !important; height: 65px !important; padding-left: 20px !important; padding-bottom: 20px !important; } }
}



