.elementor-widget-container .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-container .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-23730 .elementor-element.elementor-element-98adfc8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-23730 .elementor-element.elementor-element-66ebe27{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-9ef6224 *//* تعریف دقیق متغیرهای پالت رنگی شما */
:root {
    --color-primary: #3396D3;      /* آبی */
    --color-bg-light: #FFF0CE;     /* کرم روشن */
    --color-bg-accent: #EBCB90;    /* بژ */
    --color-bg-body: #EEEEEE;      /* خاکستری روشن */
    --color-text-dark: #5D503C;    /* قهوه‌ای تیره برای متن */
    --font-family: 'Vazirmatn', sans-serif;
}

/* ریست کردن استایل‌های پیش‌فرض */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg-body);
    color: var(--color-text-dark);
}

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

/* ================================ */
/* استایل سربرگ (Header)       */
/* ================================ */
.main-header {
    background-color: var(--color-bg-light);
    /* کاهش ارتفاع با کم کردن پدینگ عمودی */
    padding: 10px 0; 
    box-shadow: 0 2px 8px rgba(93, 80, 60, 0.1); 
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem; /* کمی کوچک‌تر برای هماهنگی با ارتفاع جدید */
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin: 0 15px;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--color-primary);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-actions a {
    color: var(--color-text-dark);
    font-size: 1.1rem; /* کمی کوچک‌تر برای هماهنگی */
    margin-left: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-actions a:hover {
    color: var(--color-primary);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-dark);
}

/* ================================ */
/* استایل بخش Hero          */
/* ================================ */
.hero-section {
    background-color: var(--color-bg-accent);
    padding: 60px 0;
    /* اصلاح محاسبه ارتفاع با توجه به هدر جدید و کوتاه‌تر (حدود 65 پیکسل) */
    min-height: calc(95vh - 65px); 
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 50%;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--color-text-dark);
    line-height: 1.4;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: #2a83b8;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(51, 150, 211, 0.3);
}

.hero-image {
    flex: 1;
    max-width: 45%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(93, 80, 60, 0.2);
}

/* ================================ */
/* استایل واکنش‌گرا          */
/* ================================ */
@media (max-width: 992px) {
    /* --- هدر --- */
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--color-bg-light);
        box-shadow: -2px 0 10px rgba(93, 80, 60, 0.1);
        flex-direction: column;
        padding-top: 80px;
        transition: right 0.4s ease-in-out;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .main-nav ul li {
        margin: 15px 0;
    }

    .main-nav ul li a {
        font-size: 1.2rem;
    }

    .mobile-nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .header-actions {
        display: none;
    }

    /* --- بخش Hero --- */
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .hero-image {
        max-width: 100%;
    }

    .hero-image {
        margin-top: 40px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-667d721 *//* --- استایل بخش Hero --- */
.hero-section {
    background-color: var(--color-bg-accent); /* استفاده از رنگ بژ/خاکی */
    padding: 60px 0;
    /* ارتفاع بخش را حداقل به اندازه صفحه نمایش منهای ارتفاع هدر تنظیم می‌کنیم */
    min-height: calc(90vh - 85px); /* 85px ارتفاع تقریبی هدر است */
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px; /* فاصله بین متن و تصویر */
}

/* استایل بخش محتوای متنی */
.hero-content {
    flex: 1; /* اجازه می‌دهد این بخش رشد کند */
    max-width: 50%;
}

.hero-content h1 {
    font-size: 3rem; /* فونت بزرگ و تأثیرگذار */
    color: var(--color-text-dark);
    line-height: 1.4;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* استایل دکمه اصلی */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary); /* آبی */
    color: #fff;
}

.btn-primary:hover {
    background-color: #2a83b8;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(51, 150, 211, 0.3);
}

/* استایل بخش تصویر */
.hero-image {
    flex: 1;
    max-width: 45%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(93, 80, 60, 0.2);
}

/* --- استایل واکنش‌گرای بخش Hero --- */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column; /* ستون‌ها زیر هم قرار می‌گیرند */
        text-align: center;
    }

    .hero-content, .hero-image {
        max-width: 100%;
    }

    .hero-image {
        margin-top: 40px;
    }
}/* End custom CSS */