/* ==========================================================
   🌍 CLS FRONTEND — LEGACY COMPATIBILITY BRIDGE
   ========================================================== */

/*
|--------------------------------------------------------------------------
| PURPOSE
|--------------------------------------------------------------------------
|
| This file now acts as:
|
| ✅ legacy compatibility bridge
| ✅ temporary migration layer
| ✅ old selector fallback layer
|
| Main frontend system now lives in:
|
| assets/css/frontend/
|
|--------------------------------------------------------------------------
*/


/* ==========================================================
   🧯 LEGACY SAFETY FIXES
   ========================================================== */


/* Prevent WooCommerce theme conflicts */
.woocommerce div.product



/* Prevent Select2 overflow */
.select2-container {

    max-width: 100%;
}


/* Prevent map canvas overflow */
.cls-map-inline iframe,
.cls-map-inline div {

    max-width: 100%;
}





/* ==========================================================
   🧯 SELECT2 Z-INDEX FIX
   ========================================================== */

.select2-container--open {

    z-index: 999999;
}


/* ==========================================================
   🧯 HIDDEN ELEMENT SAFETY
   ========================================================== */

[hidden] {

    display: none !important;
}


/* ==========================================================
   🧯 GOOGLE MAPS FIX
   ========================================================== */

.gm-style img {

    max-width: none;
}


