/*
Theme Name: Organify
Theme URI: http://demo.casethemes.net/organify
Author: Case-Themes
Author URI: https://casethemes.net/
Description: Organify is a beautiful, modern, and responsive Organic Food Store WordPress Theme. Organify is a perfect fit for any natural food related website like fresh grocer, market food, grocery market, organic ecommerce website, organic food store, Organic markets, supermarkets and online groceries. Additionally, it is perfect for eco product stores, fresh breads, bakery shops and even natural cosmetics stores.
Version: 1.0.0
License: ThemeForest
License URI: https://themeforest.net/licenses
Text Domain: organify
Tags: organic, organic theme, organic store, organic food store, organic shop, organic farm, food, farm, store, nutrition, fruit, woocommerce, fresh, vegetable
Requires at least: 5.8 or Higher
Requires PHP: 7.4 or Higher
Tested up to: 6.4

*/

/* Media query for desktop screens (typically screens wider than 1024px) */
/* --- 1. Mobile View (e.g., screens up to 767px wide) --- */
@media screen and (max-width: 767px) {
    /* SHOW mobile slider, HIDE tablet and desktop sliders */
    #mobile_s {
        display: block !important; /* Ensure it's visible */
    }
    #tab_s,
    #desktop_s {
        display: none !important; /* Hide tablet and desktop */
    }
}

---

/* --- 2. Tablet View (e.g., screens between 768px and 1024px wide) --- */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    /* SHOW tablet slider, HIDE mobile and desktop sliders */
    #tab_s {
        display: block !important; /* Ensure it's visible */
    }
    #mobile_s,
    #desktop_s {
        display: none !important; /* Hide mobile and desktop */
    }
}

---

/* --- 3. Desktop View (e.g., screens wider than 1024px) --- */
@media screen and (min-width: 1025px) {
    /* SHOW desktop slider, HIDE mobile and tablet sliders */
    #desktop_s {
        display: block !important; /* Ensure it's visible */
    }
    #mobile_s,
    #tab_s {
        display: none !important; /* Hide mobile and tablet */
    }
}