/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 12 2025 | 16:53:40 */
/* ===== OPTIMIZACIÓN VELOCIDAD ===== */

/* Lazy loading para imágenes */
img {
  loading: lazy;
}

/* Optimizar fonts */
@font-face {
  font-display: swap;
}

/* Reducir CLS (Layout Shift) */
.woocommerce ul.products li.product img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* Preload recursos críticos */
.hero-section {
  contain: layout style paint;
}

