/* ===== Font Preload / Typography ===== */
@font-face {
    font-family: 'Vazirmatn';
    src: url('/wp-content/fonts/Vazirmatn.woff2') format('woff2');
    font-display: swap;
}
body, p, span, li {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 16px;
    color: #333;
}
a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: #005177;
}

/* ===== Header & Menu ===== */
header.site-header {
    background-color: #fff;
    position: relative;
    z-index: 999;
    width: 100%;
}
header .main-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* ===== Elementor Banners ===== */
.elementor-widget-image img,
.elementor-widget-banner img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ===== WooCommerce Product Cards ===== */
ul.products li.product {
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 20px;
    box-sizing: border-box;
    transition: box-shadow 0.2s ease;
}
ul.products li.product:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
ul.products li.product h2 {
    font-size: 18px;
    color: #111;
    margin: 0 0 10px 0;
}

/* ===== Footer ===== */
footer.site-footer {
    background-color: #222;
    color: #ccc;
    padding: 40px 0;
    box-sizing: border-box;
}
footer a {
    color: #ccc;
    transition: color 0.2s ease;
}
footer a:hover {
    color: #fff;
}
