/*
Theme Name: بازار بین‌المللی ونوس کیش
Theme URI: https://venuskish.com
Author: فرخ دائی
Author URI: https://farrokhdaei.ir
Description: تم اختصاصی بازار بین‌المللی ونوس کیش - ساختار ماژولار
Version: 2.0.0
License: Proprietary
Text Domain: venus-mall
*/

/* ============================================
   ۱. فراخوانی فونت Estedad (لوکال)
   ============================================ */
@font-face {
    font-family: 'Estedad';
    font-style: normal;
    font-weight: 100;
    src: url('assets/fonts/Estedad/Estedad-Thin.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Estedad';
    font-style: normal;
    font-weight: 200;
    src: url('assets/fonts/Estedad/Estedad-ExtraLight.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Estedad';
    font-style: normal;
    font-weight: 300;
    src: url('assets/fonts/Estedad/Estedad-Light.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Estedad';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/Estedad/Estedad-Regular.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Estedad';
    font-style: normal;
    font-weight: 500;
    src: url('assets/fonts/Estedad/Estedad-Medium.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Estedad';
    font-style: normal;
    font-weight: 600;
    src: url('assets/fonts/Estedad/Estedad-SemiBold.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Estedad';
    font-style: normal;
    font-weight: 700;
    src: url('assets/fonts/Estedad/Estedad-Bold.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Estedad';
    font-style: normal;
    font-weight: 800;
    src: url('assets/fonts/Estedad/Estedad-ExtraBold.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Estedad';
    font-style: normal;
    font-weight: 900;
    src: url('assets/fonts/Estedad/Estedad-Black.woff2') format('woff2');
    font-display: swap;
}

/* ============================================
   ۲. فراخوانی Font Awesome (لوکال) - ✅ درست
   ============================================ */
@import url('assets/fonts/Font-Awesome/css/all.min.css');

/* ============================================
   ۳. فراخوانی استایل‌های ماژولار
   ============================================ */
@import url('modules/header/style.css');
@import url('modules/footer/style.css');

/* ============================================
   ۴. تنظیمات پایه
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    direction: rtl;
    scroll-behavior: smooth;
}

body {
    font-family: 'Estedad', 'Vazir', 'IRANSans', 'Tahoma', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    background: #f8fafc;
    color: #1e293b;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.venus-main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 50vh;
}

/* ============================================
   ۵. حذف عنوان صفحات
   ============================================ */
.page-title,
.entry-title,
.single-title,
.entry-header h1,
.page-header h1 {
    display: none !important;
}

/* ============================================
   ۶. کلاس‌های کمکی
   ============================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-column { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }

.w-100 { width: 100%; }
.hidden { display: none !important; }

@media (max-width: 768px) {
    .mobile-hidden { display: none !important; }
    .desktop-only { display: none !important; }
}

@media (min-width: 769px) {
    .mobile-only { display: none !important; }
}

/* ============================================
   ۷. واکنش‌گرایی عمومی
   ============================================ */
@media (max-width: 768px) {
    .venus-main-content {
        padding: 12px;
        min-height: 40vh;
    }
}

@media (max-width: 480px) {
    .venus-main-content {
        padding: 8px;
        min-height: 30vh;
    }
}