/*
Theme Name: Island Selects Child Theme
Theme URI: https://islandselectstci.com
Description: Optimized child theme for Island Selects TCI with performance improvements
Author: Island Selects Team
Template: marketo
Version: 1.0.0
*/

/* Import parent theme styles */
@import url("../marketo/style.css");

/* Performance Optimizations */

/* Reduce font loading overhead */
@font-face {
  font-display: swap;
}

/* Optimize images */
img {
  max-width: 100%;
  height: auto;
}

/* Remove outline from images during lazy load */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Improve category dropdown performance */
.category-dropdown {
  will-change: transform;
  transform: translateZ(0);
}

/* Optimize animations */
* {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Custom improvements */
.product-small {
  transition: transform 0.2s ease;
}

.product-small:hover {
  transform: translateY(-2px);
}
