/*
Theme Name: Minimal Ajax Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: یک قالب وردپرس سبک، کم‌حجم و سازگار با المنتور، ووکامرس و دکان با پشتیبانی کامل AJAX و Lazy Load
Version: 2.1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: minimal-ajax-theme
Tags: minimal, lightweight, ajax, woocommerce, elementor, dokan, lazy-load
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Minimal Layout */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.ajax-loader {
    display: none;
    text-align: center;
    padding: 20px;
}

.ajax-loader.active {
    display: block;
}

/* Lazy Load Images */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[data-src].loaded {
    opacity: 1;
}

