/*
Theme Name: Flatsome Speed Edition (HD + Fast)
Theme URI: http://flatsome.uxthemes.com/
Description: The fastest possible configuration of Flatsome. HD images enabled, Animations disabled, Bloat removed.
Author: Gemini Optimization
Template: flatsome
Version: 1.0
*/

/* ==============================================
   1. FORCE HARDWARE ACCELERATION & RENDERING
   ============================================== */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
}

/* ==============================================
   2. KILL ALL ANIMATIONS (Performance Boost)
   ============================================== */
*, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
}

.product-small .box-image:hover img {
    transform: none !important;
    opacity: 1 !important;
}

.product-small:hover .box-image {
    transform: none !important;
    box-shadow: none !important;
}

/* ==============================================
   3. LAYOUT STABILITY (CLS Fixes)
   ============================================== */
/* Force 1:1 Aspect Ratio for Grid Images */
.product-small .box-image {
    padding-top: 100% !important; 
    position: relative;
    overflow: hidden;
}

.product-small .box-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
