/** Shopify CDN: Minification failed

Line 125:1 Unexpected "{"

**/
/* Quick Add Variants Overlay */
.m-product-card {
  position: relative;
}

.m-product-card__media {
  position: relative;
}

/* Overlay sobre la foto */
.m-quick-add-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
  border-top: 1px solid #e5e5e5;
  animation: slideUp 0.3s ease;
  max-height: 50%;
  overflow-y: auto;
}


@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.m-quick-add-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}


.m-quick-add-variant-btn {
  padding: 10px 16px;
  background: white;
  border: 1px solid #000;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 60px;
  text-align: center;
}

.m-quick-add-variant-btn:hover:not(.m-disabled) {
  background: #000;
  color: #fff;
}

.m-quick-add-variant-btn.m-disabled {
  opacity: 0.4;
  text-decoration: line-through;
  cursor: not-allowed;
  border-color: #ccc;
  color: #999;
}

/* Botón + para mobile */
.m-quick-add-plus-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  border: none;
  font-size: 24px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.m-quick-add-plus-btn:active {
  transform: scale(0.95);
  background: #333;
}

/* Mobile adjustments */
@media (max-width: 768px) {
.m-quick-add-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
  border-top: 1px solid #e5e5e5;
  animation: slideUp 0.3s ease;
  max-height: 50%;
  overflow-y: auto;
}

 {
    padding: 12px;
  }
  
  .m-quick-add-variant-btn {
  padding: 8px 12px;
  background: white;
  border: 1px solid #000;
  color: #000;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1 1 calc(25% - 6px);
  min-width: 0;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

}

/* Desktop: ocultar botón + */
@media (min-width: 769px) {
  .m-quick-add-plus-btn {
    display: none !important;
  }
}

/* Dark background variant (opcional) */
.m-quick-add-overlay.dark {
  background: rgba(0, 0, 0, 0.95);
  border-top-color: #333;
}

.m-quick-add-overlay.dark .m-quick-add-variant-btn {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.m-quick-add-overlay.dark .m-quick-add-variant-btn:hover:not(.m-disabled) {
  background: #fff;
  color: #000;
}
/* Badge de Agotado */
.m-product-sold-out-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 15;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .m-product-sold-out-badge {
    padding: 10px;
    font-size: 12px;
  }
}
