/* ===========================
   RESET
=========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:"Vazirmatn",sans-serif;
}

body{
direction:rtl;
background:#fff;
color:#333;
overflow-x:hidden;
}

/* ===========================
   TOP BAR
=========================== */

.top-bar{

display:flex;
justify-content:space-between;
align-items:center;
padding:10px 8%;
background:#f4f4f4;
font-size:14px;
gap:20px;

}

.top-bar-left{

display:flex;
align-items:center;
gap:15px;

}

.top-bar-left i{

color:#e60000;

}

.top-bar-center{

display:flex;
width:40%;

}

.top-bar-center input{

width:100%;
padding:9px;
border:1px solid #ddd;
outline:none;
border-radius:4px 0 0 4px;

}

.top-bar-center button{

background:#e60000;
color:#fff;
border:none;
padding:0 15px;
cursor:pointer;
border-radius:0 4px 4px 0;

}

.header-whatsapp a{

display:flex;
align-items:center;
gap:8px;
font-size:18px;
color:#25d366;
text-decoration:none;

}

/* ===========================
   HEADER
=========================== */

header{

display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:#fff;
border-bottom:1px solid #eee;
position:relative;
z-index:9999;

}

.logo img{

height:55px;

}

/* ===========================
   MENU
=========================== */

nav ul{

display:flex;
list-style:none;
gap:25px;

}

nav ul li{

position:relative;

}

nav ul li a{

text-decoration:none;
font-weight:500;
color:#333;
transition:.3s;

}

nav ul li a:hover{

color:#e60000;

}

/* ===========================
   SUBMENU
=========================== */

.submenu{

display:none;
position:absolute;
right:0;
top:100%;
width:260px;
background:#fff;
border-radius:8px;
box-shadow:0 6px 18px rgba(0,0,0,.12);
padding:8px 0;
z-index:9999;

}

.submenu li{

padding:0;
border:none;

}

.submenu li a{

display:block;
padding:10px 18px;
font-size:14px;
white-space:normal;

}

.submenu li a:hover{

background:#e60000;
color:#fff;

}

.has-submenu:hover>.submenu{

display:block;

}

/* ===========================
   HAMBURGER
=========================== */

.menu-toggle{

display:none;
background:none;
border:none;
width:36px;
height:36px;
padding:0;
margin:0;
font-size:22px;
cursor:pointer;
color:#333;
align-items:center;
justify-content:center;

}

/* =========================
   HERO SLIDER
========================= */

.hero-slider{
position:relative;
width:100%;
height:500px;
overflow:hidden;
background:#fff;
}

.slide{
position:absolute;
top:0;
right:0;
width:100%;
height:100%;
opacity:0;
transition:opacity .6s ease;
display:flex;
justify-content:center;
align-items:center;
}

.slide.active{
opacity:1;
z-index:2;
}

.slide img{
max-width:100%;
max-height:100%;
width:auto;
height:auto;
display:block;
object-fit:contain;
}

/* فلش ها */

.prev,
.next{

position:absolute;
top:50%;
transform:translateY(-50%);
width:45px;
height:45px;

background:rgba(0,0,0,.45);

border:none;

color:#fff;

font-size:26px;

cursor:pointer;

border-radius:50%;

z-index:50;

transition:.3s;

}

.prev:hover,
.next:hover{

background:#e60000;

}

.prev{

right:20px;

}

.next{

left:20px;

}

/* نقطه ها */

.slider-dots{

position:absolute;

bottom:20px;

left:50%;

transform:translateX(-50%);

display:flex;

gap:10px;

z-index:60;

}

.dot{

width:12px;
height:12px;

background:#ddd;

border-radius:50%;

cursor:pointer;

transition:.3s;

}

.dot.active{

background:#e60000;

}

/* ========= فوتر ========= */
footer {
  background: #111;
  padding: 30px 8%;
  color: #ccc;
  text-align: center;
  font-size: 14px;
}

footer a {
  color: #e60000;
  text-decoration: none;
}

/* ==========================
   MENU FIX
========================== */

nav{
position:relative;
}

nav ul{

display:flex;

align-items:center;

}

nav ul li{

position:relative;

list-style:none;

}

nav ul li a{

display:block;

padding:12px 0;

}

/* زیرمنو */

.submenu{

display:none;

position:absolute;

top:100%;

right:0;

background:#fff;

min-width:260px;

padding:10px 0;

border-radius:8px;

box-shadow:0 10px 25px rgba(0,0,0,.12);

z-index:99999;

}

.submenu li{

padding:0;

}

.submenu li a{

padding:10px 18px;

display:block;

white-space:normal;

line-height:1.8;

}

.has-submenu:hover>.submenu{

display:block;

}

/* ========= نسخه موبایل ========= */
@media (max-width: 768px) {

  /* نوار بالا */
  .top-bar {
    flex-direction: column;
    gap: 8px;
    padding: 10px 5%;
    font-size: 13px;
  }

  .top-bar-center {
    width: 100%;
  }

  .top-bar-center input {
    padding: 8px;
  }

  /* هدر */
  header {
    padding: 10px 5%;
    flex-direction: row;
    justify-content: space-between;
  }

  .logo img {
    height: 45px;
  }

  /* منوی همبرگری */
   ul {
    position: absolute;
    top: 75px;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid #eee;
    transition: max-height .4s ease;
  }

   ul li {
    padding: 12px 18px;
    border-bottom: 1px solid #eee;
  }



  /* باز شدن منو */
  nav.active ul {
    max-height: 1000px;
    overflow-y:auto;
  }

  /* اسلایدر */
  .hero-slider {
    height: 60vh;
  }

  .slide-content {
    bottom: 10%;
    right: 5%;
    max-width: 90%;
  }

  .slide-content h1,
  .slide-content h2 {
    font-size: 18px;
    line-height: 34px;
  }

  .slide-content p {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .btn-red,
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* دکمه‌های اسلایدر */
  .prev, .next {
    font-size: 22px;
    padding: 8px 14px;
    top: 45%;
  }
}



.product-categories {
    padding: 50px 20px;
    text-align: center;
}

.section-title {
    color: #d80000;
    font-size: 26px;
    margin-bottom: 30px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: .3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.view-btn {
    color: #d80000;
    font-weight: bold;
    border-bottom: 1px solid #d80000;
    padding-bottom: 3px;
    transition: .3s;
}

.view-btn:hover {
    color: #a30000;
    border-color: #a30000;
}

/*  نسخه موبایل */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}


.product-card img {
  width: 150px;        /* اندازه تصویر را بزرگ‌تر می‌کند */
  height: auto;
  margin-bottom: 12px;
  display: block;
  object-fit: contain;
}

.product-card a,
.product-card a:link,
.product-card a:visited,
.product-card a:hover,
.product-card a:active {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    

}

.product-card a {
    border-bottom: none !important;
}


/* ===== برداشتن هر نوع خط زیر لینک‌های کارت‌ها ===== */
.product-card a,
.product-card a:link,
.product-card a:visited,
.product-card a:hover,
.product-card a:active,
.category-card a,
.category-card a:link,
.category-card a:visited,
.category-card a:hover,
.category-card a:active,
.product-link,
.product-link:link,
.product-link:visited,
.product-link:hover,
.product-link:active,
.view-btn,
.view-btn:link,
.view-btn:visited,
.view-btn:hover,
.view-btn:active {
  text-decoration: none !important;
  border-bottom: none !important;
  outline: none !important;
  box-shadow: none !important;
  background-image: none !important; /* در صورت استفاده از گرادینت یا تصویر زیرخط */
}

/* اگر مرورگرت بخاطر underlineِ اتوماتیک در حالت focus خط می‌گذارد */
.product-card a:focus,
.category-card a:focus,
.view-btn:focus,
.product-link:focus {
  outline: none !important;
  text-decoration: none !important;
  border-bottom: none !important;
}

.view-btn {
    border-bottom: none !important;
    text-decoration: none !important;
}




Message notifications are off. 
You
Today
11/12/2025
Messages and calls are end-to-end encrypted. Only people in this chat can read, listen to, or share them. Click to learn more
Today
/* استایل کلی فوتر */
.footer {
    background: #111;
    color: #f1f1f1;
    padding: 40px 20px;
    margin-top: 60px;
    font-family: sans-serif;
}

/* کانتینر دو ستونه */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    align-items: right;
    
}

/* هر ستون */
.footer-section {
    flex: 1;
    min-width: 280px;
    text-align: right;
}

/* عنوان ستون‌ها */
.footer-section h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
    text-align: center;
    display: block;
    
    
}

/* متن‌ها */
.footer-section p {
    margin: 10px 0;
    line-height: 1.8;
    color: #ddd;
}

/* آیکون فونت‌آوسام */
.footer-section i {
    margin-left: 8px;
    color: #0fb9b1; /* سبز تیره قشنگ — تغییرش راحت */
    font-size: 18px;
}

/* شماره تماس: لینک */
.footer-section a {
    color: #ddd;
    text-decoration: none;
}

.footer-section a:hover {
    color: #0fb9b1;
}

/* شبکه‌های اجتماعی */
.social-item {
    display: flex;
    align-items: center;
    margin: 12px 0;
    text-decoration: none;
    color: #ddd;
}

/* آیکون‌های شبکه‌های اجتماعی */
.social-icon {
    width: 32px;
    height: 32px;
    margin-left: 10px;
}

/* متن کنار آیکون */
.social-item span {
    font-size: 18px;
}

/* پایین فوتر */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
}


/* ظاهر جدید و شیک زیرمنو */
nav ul li {
  position: relative;
}

/* باکس زیرمنو */
nav ul li .submenu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 170px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 6px 0;
  display: none;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  z-index: 1000;
}

/* هر آیتم */
nav ul li .submenu li a {
  display: block;
  padding: 7px 12px;
  font-size: 13px;
  color: #333;
  transition: all 0.25s ease;
  white-space: nowrap;
}

/* هاور */
nav ul li .submenu li a:hover {
  background: #e60000;
  color: #fff;
  padding-right: 18px;
}

/* نمایش زیرمنو */
nav ul li:hover .submenu {
  display: block;
}

.page-content {
    width: 80%;
    margin: 120px auto 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.06);
    min-height: 350px;
}

.page-content h1 {
    margin-bottom: 20px;
    font-size: 26px;
    color: #e60000;
}


/* آیتم‌های داخل زیرمنو */
nav ul li ul li a {
    font-size: 14px;    /* کمی کوچکتر */
    line-height: 1.6;
    padding: 8px 16px;
    white-space: normal; /* اجازه شکستن خط */
}


/* زیرمنوی محصولات */
nav ul li ul {
    min-width: 260px;   /* عرض زیرمنو */
    padding: 10px 0;
}

/* آیتم‌های داخل زیرمنو */
nav ul li ul li a {
    font-size: 14px;    /* کمی کوچکتر */
    line-height: 1.6;
    padding: 8px 16px;
    white-space: normal; /* اجازه شکستن خط */
}



/* کانتینر اصلی */
.contact-container {
    max-width: 600px;
    margin: 50px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 5px solid #d32f2f; /* نوار قرمز بالا */
}

/* عنوان */
h2 {
    text-align: center;
    color: #d32f2f;
    margin-bottom: 25px;
    font-size: 28px;
}

/* لیست اطلاعات تماس */
.contact-info {
    list-style: none; /* حذف بولت پیش‌فرض */
    padding: 0;
    margin-bottom: 25px;
}

.contact-info li {
    margin: 12px 0;
    font-size: 16px;
    position: relative;
    padding-right: 25px;
    color: #333;
}

/* بولت سفارشی */
.contact-info li::before {
    content: "•"; /* بولت دایره */
    color: #d32f2f;
    position: absolute;
    right: 0;
    font-size: 22px;
    line-height: 1;
}

/* لینک‌ها */
.contact-info a {
    color: #d32f2f;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}

.map-container {
    margin-top: 20px;
    border: 3px solid #d32f2f;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-categories {
    padding: 60px 8%;
    background: #f9f9f9;
}

.page-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 40px;
    color: #e60000;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
gap: 30px;
    
}

.category-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.category-card img {
    width: 100%;
    height: 200px;        /* این باعث مستطیلی شدن میشه */
    object-fit: cover;    /* عکس خراب نمیشه */
    display: block;
}

.category-card h3 {
    font-size: 15px;
    padding: 15px;
    color: #333;
    line-height: 1.6;
}

/* افکت */
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.category-card:hover h3 {
    color: #e60000;
}



.category-card .content {
    padding: 16px 18px;
}


@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card img {
        height: 170px;
    }
}
a {
    text-decoration: none;
}


/* ===== HERO ===== */

.category-hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    padding:50px 8%;
    background:#fff;
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    max-width:100%;
    width:420px;
    height:auto;
    object-fit:contain;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:32px;
    margin-bottom:15px;
}

.hero-text p{
    line-height:2;
    color:#555;
}

/* موبایل */

@media(max-width:768px){

.category-hero{
    flex-direction:column;
    text-align:center;
    padding:25px 15px;
}

.hero-image{
    order:1;
    width:100%;
}

.hero-image img{
    width:100%;
    max-width:330px;
    margin:auto;
}

.hero-text{
    order:2;
    width:100%;
}

.hero-text h1{
    font-size:24px;
    line-height:1.8;
}

.hero-text p{
    font-size:15px;
    line-height:2;
    text-align:justify;
}

}

/* ===== Products ===== */
.category-products {
  padding: 60px 8%;
}

.brand-title {
  font-size: 26px;
  margin: 40px 0 20px;
  border-right: 5px solid #c00;
  padding-right: 12px;
  color: #222;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 25px;
}

.product-card {
  background: #fff;
  border-radius: 6px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.product-card h3 {
  font-size: 15px;
  margin: 12px 0 6px;
}

.product-card p {
  font-size: 13px;
  color: #777;
}

.more-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: #c00;
  text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .banner-overlay h1 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}


/* حذف زبان‌ها */
.lang-switch,
.header-lang,
.lang-en,
.lang-fr {
  display: none !important;
}

/* دکمه واتساپ */
.header-whatsapp {
  display: flex;
  align-items: center;
}

.header-whatsapp a {
  color: #25d366;
  font-size: 20px;
  text-decoration: none;
}

.social-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: white;
}
.social-item i {
  font-size: 25px;
}


/* ===== صفحه محصول ===== */

.product-page {
  padding: 40px 8%;
}
.product-top {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 40px;
}

/* ===== اسلایدر اختصاصی محصول – نسخه نهایی ===== */

.product-slider {
  width: 65%;
  position: relative;
}

.product-slider .slide {
  display: none;
  text-align: center;
}

.product-slider .slide.active {
  display: block;
}

.product-slider img {
  width: auto !important;
  max-width: 100% !important;
  max-height: 450px !important;
  margin: auto;
  display: block;
  object-fit: contain;
}

.product-info {
  width: 35%;
}

.short-desc {
  line-height: 1.8;
  margin: 15px 0;
  color: #555;
}

.catalog-link {
  display: inline-block;
  background: #e60000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
}


/* ===== Tabs ===== */

.product-tabs {
  margin-top: 30px;
}

.tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-buttons button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background: #ddd;
  border-radius: 4px;
}

.tab-buttons button.active {
  background: #e60000;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content table {
  width: 100%;
  border-collapse: collapse;
}

.tab-content td {
  border: 1px solid #ccc;
  padding: 8px;
}





/* ===== Dots ===== */

.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
}

.dot.active {
  background: #e60000;
}


/* ===== Responsive ===== */

@media (max-width: 768px) {
  .product-top {
    flex-direction: column;
  }

  .product-slider,
  .product-info {
    width: 100%;
  }
}

/* حذف هاله طوسی اسلایدر */
.hero-slider .slide::after {
  display: none !important;
}

/* اصلاح نمایش لوگوی برندها */
.category-card img {
  width: 100% !important;
  height: 120px !important;
  object-fit: contain !important;
}

.blog-home{
max-width:1200px;
margin:70px auto;
padding:0 20px;
}

.blog-home h2{
text-align:center;
margin-bottom:25px;
}

.blog-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.blog-card{
background:#fff;
padding:20px;
border-radius:10px;
box-shadow:0 3px 15px rgba(0,0,0,.08);
transition:.3s;
}

.blog-card:hover{
transform:translateY(-5px);
}

.blog-card h3{
color:#e60000;
margin-bottom:8px;
}

.blog-card p{
color:#555;
}

@media(max-width:768px){
.blog-grid{
grid-template-columns:1fr;
}
}

.seo-content{
    max-width:1200px;
    margin:60px auto;
    padding:0 20px;
}

.seo-content h2{
    color:#e60000;
    font-size:28px;
    margin-bottom:20px;
}

.seo-content h3{
    color:#333;
    font-size:20px;
    margin-top:30px;
    margin-bottom:12px;
}
.seo-content p{
    line-height:2;
    text-align:justify;
    color:#555;
    margin-bottom:15px;
}

.seo-content ul{
    padding-right:20px;
}

.seo-content li{
    line-height:2;
    margin-bottom:8px;
}
.article-content,
.related-products,
.features-section,

.faq-section{
    max-width:1200px;
    margin:60px auto;
    padding:0 30px;
}

.article-content p,
.faq-section p{
    line-height:2.2;
    text-align:justify;
    margin-bottom:18px;
}

.article-content h2,
.related-products h2,
.features-section h2,
.faq-section h2{
    color:#d80000;
    margin:40px 0 20px;
}

.article-content h3,
.faq-section h3{
    margin:25px 0 10px;
}

.related-products ul,
.features-section ul{
    padding-right:20px;
}

.related-products li,
.features-section li{
    margin-bottom:10px;
    line-height:2;
}

.home-intro{
    max-width:1200px;
    margin:60px auto;
    padding:40px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 4px 20px rgba(0,0,0,0.06);
}

.home-intro p{
    font-size:17px;
    line-height:2.2;
    color:#555;
    text-align:justify;
}.home-intro h1{
    text-align:center;
    color:#e60000;
    margin-bottom:25px;
}

.home-intro h1::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    background:#e60000;
    margin:15px auto 0;
    border-radius:5px;
}

@media (max-width:768px){

    .home-intro{
        margin:30px 15px;
        padding:25px;
    }

    .home-intro h1{
        font-size:24px;
    }

    .home-intro p{
        font-size:15px;
        line-height:2;
    }
    
    @media (max-width:768px){

header{
flex-wrap:wrap;
}



nav{
width:100%;
}

nav ul{
z-index:9999;
}

.hero-slider{
height:250px;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

.footer-container{
flex-direction:column;
text-align:center;
}

.footer-section{
text-align:center;
}

}



.menu-toggle{
    display:none;
}

@media (max-width:768px){

    .menu-toggle{
        display:flex;
        background:transparent;
        border:none;
        font-size:28px;
        cursor:pointer;
        color:#333;
    }

}

nav::before,
nav::after,
.menu-toggle::before,
.menu-toggle::after{
display:none !important;
content:none !important;
}


header{
    position:relative;
    z-index:9999;
}

nav{
    position:relative;
    z-index:9999;
}

@media (max-width:768px){

nav ul{
    position:absolute;
    top:100%;
    right:0;
    left:0;
    background:#fff;
    z-index:9999;

    padding:0;
    margin:0;

    gap:0;

    box-shadow:0 4px 12px rgba(0,0,0,.12);
}

nav ul li{
    padding:10px 15px;
    border-bottom:1px solid #eee;
    font-size:15px;
    line-height:1.5;
}

.has-submenu .submenu{

    display:block;

    position:static;

    width:100%;

    background:#fafafa;

    box-shadow:none;

    border:none;

    margin-top:8px;

    padding:0;

}

.has-submenu .submenu li{

    padding:6px 15px;

    font-size:14px;

    border-bottom:none;

}

.has-submenu .submenu li:last-child{

    padding-bottom:10px;

}

}
@media(max-width:768px){

nav.active ul{
    max-height:80vh;
    overflow-y:auto;
}

}
@media(max-width:768px){

h1{
    font-size:24px !important;
    line-height:1.8;
}

}
.menu-toggle {
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
}

/* ===========================
   اصلاح صفحه محصولات در موبایل
=========================== */

@media (max-width:768px){

.category-products{
    padding:30px 15px;
}

.brand-title{
    font-size:20px;
    margin:30px 0 15px;
}

.product-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}

.product-card{
    width:100%;
}

.product-card img{
    width:100%;
    max-width:220px;
    height:auto;
    margin:auto;
    display:block;
}

.seo-benefits,
.seo-faq{
    width:100%;
    max-width:100%;
    padding:0 15px;
    margin:35px auto;
}

.seo-benefits ul,
.seo-faq ul{
    display:block;
    padding-right:20px;
}

.seo-benefits li,
.seo-faq li{
    display:list-item;
    margin-bottom:10px;
    line-height:2;
}

.seo-faq details{
    margin-bottom:12px;
}

}

/* ===== WHY US ===== */

.why-us{

max-width:1200px;

margin:60px auto;

padding:40px 30px;

background:#fff;

border-radius:10px;

box-shadow:0 3px 15px rgba(0,0,0,.06);

}

.why-us h2{

text-align:center;

color:#e60000;

margin-bottom:30px;

font-size:28px;

}

.why-us ul{

display:block;

padding-right:25px;

list-style:disc;

}

.why-us li{

display:list-item;

margin-bottom:12px;

line-height:2;

font-size:16px;

}

@media(max-width:768px){

.why-us{

margin:25px 15px;

padding:20px;

}

.why-us h2{

font-size:22px;

}

.why-us li{

font-size:15px;

line-height:2;

}

}
/* اصلاح بخش چرا سازه کارآفرینان */

.why-us ul{
    display:block !important;
    list-style:disc !important;
    padding-right:25px !important;
    margin:0 !important;
    gap:0 !important;
}

.why-us li{
    display:list-item !important;
    width:100% !important;
    margin-bottom:12px !important;
}

@media (max-width:768px){

.why-us{
    display:block !important;
    width:100% !important;
    overflow:visible !important;
}

.why-us ul{
    display:block !important;
    position:static !important;
    max-height:none !important;
    overflow:visible !important;
    height:auto !important;

    list-style:disc !important;
    padding-right:22px !important;
    margin:15px 0 !important;
}

.why-us li{
    display:list-item !important;
    float:none !important;
    width:auto !important;
    margin-bottom:12px !important;
}

}

/* =================================
   FIX CONTACT PAGE - FINAL
================================= */

@media (max-width: 768px) {

    /* فقط منوی اصلی موبایل */
    header nav > ul {
        position: absolute !important;
        top: 100% !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        max-height: 0 !important;
        overflow: hidden !important;
    }

    header nav.active > ul {
        max-height: 80vh !important;
        overflow-y: auto !important;
    }

    /* اطلاعات تماس نباید تحت قوانین منو قرار بگیرد */
    .page-content .contact-info {
        position: static !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        margin: 20px 0 30px !important;
        padding: 0 !important;
        list-style: none !important;
        box-sizing: border-box !important;
    }

    .page-content .contact-info li {
        position: static !important;
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 10px 0 !important;
        margin: 0 0 12px !important;
        box-sizing: border-box !important;
        line-height: 2 !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: anywhere !important;
    }

    .page-content .contact-info li::before {
        display: none !important;
        content: none !important;
    }

    .page-content .contact-info i {
        flex: 0 0 25px !important;
        width: 25px !important;
        margin-left: 8px !important;
        color: #d32f2f !important;
    }

    .page-content .contact-info a {
        display: inline !important;
        position: static !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
    }

    /* خود صفحه تماس */
    .page-content {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 30px 0 !important;
        padding: 25px 15px !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    .page-content h1 {
        position: static !important;
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        font-size: 22px !important;
        line-height: 1.8 !important;
        color: #e60000 !important;
        margin: 0 0 20px !important;
    }

    .map-container {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 280px !important;
        margin-top: 25px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .map-container iframe {
        display: block !important;
        width: 100% !important;
        height: 280px !important;
        max-width: 100% !important;
        border: 0 !important;
    }
}

/* ===========================
   BLOG PAGE
=========================== */

.blog-home {
    width: 80%;
    max-width: 1200px;
    margin: 80px auto 60px;
}

.blog-home > h1 {
    text-align: center;
    color: #e60000;
    font-size: 28px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: justify;
    line-height: 2;
    color: #555;
    font-size: 16px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.blog-card {
    display: block;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
    text-decoration: none !important;
    color: #333;
    transition: .3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
}

.blog-card h2 {
    color: #e60000;
    font-size: 19px;
    line-height: 1.8;
    margin: 0 0 12px;
}

.blog-card p {
    color: #555;
    font-size: 14px;
    line-height: 2;
    margin: 0 0 15px;
}

.blog-card .more-link {
    display: inline-block;
    color: #e60000;
    font-size: 14px;
    font-weight: 600;
}

/* ===========================
   BLOG MOBILE
=========================== */

@media (max-width: 768px) {

    .blog-home {
        width: 100%;
        margin: 40px 0;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .blog-home > h1 {
        font-size: 23px !important;
        line-height: 1.8;
        margin-bottom: 18px;
    }

    .blog-intro {
        font-size: 14px;
        line-height: 2;
        margin-bottom: 30px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-card {
        width: 100%;
        box-sizing: border-box;
        padding: 20px;
    }

    .blog-card h2 {
        font-size: 18px;
    }

    .blog-card p {
        font-size: 14px;
        line-height: 2;
    }

}

align-items: center;

    gap: 10px;

    color: #ffffff;

    background: var(--primary);

    padding: 13px 24px;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 700;

    transition:
        all 0.25s ease;

}


.featured-more a:hover {

    background: var(--primary-dark);

    transform:
        translateY(-2px);

}


/* =========================================================
   FEATURED PRODUCTS - TABLET
========================================================= */

@media (max-width: 900px) {

    .featured-grid {

        grid-template-columns: 1fr;

    }


    .featured-card {

        max-width: 720px;

        width: 100%;

        margin: 0 auto;

    }

}


/* =========================================================
   FEATURED PRODUCTS - MOBILE
========================================================= */

@media (max-width: 600px) {

    .featured-products {

        padding: 65px 0;

    }


    .featured-container {

        width: calc(100% - 30px);

    }


    .featured-products .section-heading {

        margin-bottom: 30px;

    }


    .featured-products .section-heading h2 {

        font-size: 27px;

    }


    .featured-products .section-heading p {

        font-size: 11px;

    }


    .featured-card {

        display: block;

        min-height: auto;

        border-radius: 17px;

    }


    .featured-image {

        min-height: 280px;

        padding: 20px;

    }


    .featured-image img {

        height: 250px;

        max-width: 220px;

    }


    .featured-content {

        padding: 28px 22px 30px;

    }


    .featured-content h3 {

        font-size: 17px;

    }


    .featured-content p {

        font-size: 11px;

    }


    .featured-link {

        font-size: 11px;

    }

}

/* =========================================================
   FEATURED PRODUCTS
========================================================= */

.featured-products {

    padding: 90px 0;

    background: #f7f6f3;

}


.featured-container {

    width: min(
        var(--container),
        calc(100% - 40px)
    );

    margin: 0 auto;

}


/* =========================================================
   SECTION HEADING
========================================================= */

.featured-products .section-heading {

    display: block;

    max-width: 760px;

    margin: 0 auto 45px;

    text-align: center;

}


.featured-products .section-label {

    display: inline-block;

    margin-bottom: 10px;

    color: var(--primary);

    font-size: 20px;

    font-weight: 800;

}


.featured-products .section-heading h2 {

    margin: 0 0 15px;

    color: #1c1c1c;

    font-size: clamp(
        28px,
        3vw,
        40px
    );

    font-weight: 800;

    line-height: 1.5;

}


.featured-products .section-heading h2 strong {

    color: var(--primary);

}


.featured-products .section-heading p {

    margin: 0 auto;

    max-width: 680px;

    color: #687078;

    font-size: 13px;

    line-height: 2.1;

}


/* =========================================================
   FEATURED GRID
========================================================= */

.featured-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 28px;

}


/* =========================================================
   FEATURED CARD
========================================================= */

.featured-card {

    overflow: hidden;

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    min-height: 360px;

    border:
        1px solid
        #e2ded5;

    border-radius: 22px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.featured-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.09);

}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.featured-image {

    min-height: 360px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    background:
        linear-gradient(
            145deg,
            #f7f3ea,
            #ffffff
        );

}

.featured-image img {

    width: 100%;

    max-width: 280px;

    height: 340px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 18px 20px
            rgba(0, 0, 0, 0.10)
        );

    transition:
        transform 0.3s ease;
}


.featured-card:hover
.featured-image img {

    transform:
        scale(1.04);

}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.featured-content {

    padding: 38px 32px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.featured-category {

    margin-bottom: 10px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

}


.featured-content h3 {

    margin: 0 0 15px;

    color: #222222;

    font-size: 20px;

    font-weight: 800;

    line-height: 1.7;

}


.featured-content p {

    margin: 0 0 25px;

    color: #687078;

    font-size: 12px;

    line-height: 2.1;

}


.featured-link {

    align-self: flex-start;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding-bottom: 5px;

    color: var(--primary);

    border-bottom:
        1px solid
        var(--primary);

    font-size: 11px;

    font-weight: 800;

    transition:
        gap 0.25s ease;

}


.featured-link:hover {

    gap: 14px;

}


/* =========================================================
   FEATURED PRODUCTS - MOBILE
========================================================= */

@media (max-width: 768px) {

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-card {
        grid-template-columns: 0.85fr 1.15fr;
        min-height: 280px;
        border-radius: 18px;
    }

    .featured-image {
        min-height: 280px;
        padding: 15px;
    }

    .featured-image img {
        width: 100%;
        max-width: 150px;
        height: 250px;
        object-fit: contain;
    }

    .featured-content {
        padding: 25px 18px;
    }

    .featured-category {
        font-size: 10px;
        margin-bottom: 7px;
    }

    .featured-content h3 {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 10px;
    }

    .featured-content p {
        font-size: 11px;
        line-height: 2;
        margin-bottom: 15px;
    }

    .featured-link {
        font-size: 10px;
    }

}

/* =========================================================
   ALL PRODUCTS LINK
========================================================= */

.featured-more {

    margin-top: 35px;

    text-align: center;

}


.featured-more a {

    display: inline-flex;
    
    
    /* =========================================================
   HOME CTA
========================================================= */

.home-cta {

    width: min(
        var(--container),
        calc(100% - 40px)
    );

    margin: 70px auto;

    padding: 55px 30px;

    background: #f7f6f3;

    border: 1px solid #e2ded5;

    border-radius: 18px;

    text-align: center;

}


.home-cta-content {

    max-width: 750px;

    margin: 0 auto;

}


.home-cta h2 {

    margin: 0 0 15px;

    color: #222;

    font-size: 28px;

    font-weight: 800;

    line-height: 1.7;

}


.home-cta p {

    max-width: 650px;

    margin: 0 auto 25px;

    color: #687078;

    font-size: 14px;

    line-height: 2.1;

}


.home-cta-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 25px;

    background: var(--primary);

    color: #fff !important;

    border-radius: 8px;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none !important;

    transition: all .25s ease;

}


.home-cta-button:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);

}


/* =========================================================
   CTA MOBILE
========================================================= */

@media (max-width: 600px) {

    .home-cta {

        width: calc(100% - 30px);

        margin: 45px auto;

        padding: 35px 20px;

        border-radius: 15px;

    }


    .home-cta h2 {

        font-size: 22px;

        line-height: 1.8;

    }


    .home-cta p {

        font-size: 13px;

        line-height: 2;

    }


    .home-cta-button {

        font-size: 12px;

        padding: 12px 20px;

    }

}

/* =========================================================
   FEATURED IMAGE - REMOVE WHITE BOX EFFECT
========================================================= */

.featured-image {
    background: transparent !important;
}

.featured-image img {
    mix-blend-mode: multiply;
}


/* =========================================================
   HOME CATEGORY CARDS - TYPOGRAPHY FIX
========================================================= */

.product-categories .category-card h3 {

    margin: 0 !important;

    padding: 14px 15px 6px !important;

    font-size: 17px !important;

    line-height: 1.6 !important;

    text-align: center;

    color: #333;

}


.product-categories .category-card p {

    margin: 0 !important;

    padding: 0 15px 15px !important;

    font-size: 13px !important;

    line-height: 1.9 !important;

    text-align: center;

    color: #555;

}


.product-categories .category-card .content {

    padding: 0 !important;

}


.product-categories .category-card {

    padding: 0 !important;

}

/* =========================================================
   CATEGORY CARD LINKS - FIX
========================================================= */

.category-grid .category-card a {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: max-content !important;

    max-width: none !important;

    white-space: nowrap !important;

    word-break: keep-all !important;

    overflow: visible !important;

    font-size: 12px !important;

    line-height: 1.5 !important;

    padding: 0 !important;

    margin: 8px auto 0 !important;

    text-decoration: none !important;

    border: none !important;

}


/* اگر لینک داخل content باشد */

.category-grid .category-card .content {

    text-align: center !important;

    overflow: visible !important;

}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
}

.faq-section h2 {
    color: #d80000;
    margin: 40px 0 20px;
}


/* FAQ ITEM */

.faq-section details {
    margin-bottom: 14px;
    padding: 0;
    border: 1px solid #e2ded5;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}


/* QUESTION */

.faq-section summary {
    position: relative;
    cursor: pointer;
    padding: 18px 22px;
    padding-left: 50px;

    color: #222222;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.8;

    list-style: none;
}


/* حذف فلش پیش‌فرض */

.faq-section summary::-webkit-details-marker {
    display: none;
}


/* علامت + */

.faq-section summary::after {
    content: "+";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);

    font-size: 22px;
    font-weight: 400;
    color: #d80000;
}


/* وقتی باز است */

.faq-section details[open] summary::after {
    content: "−";
}


/* ANSWER */

.faq-section details p {
    margin: 0;
    padding: 0 22px 20px;

    color: #687078;
    font-size: 13px;
    line-height: 2.2;
    text-align: justify;
}


/* =========================================================
   FAQ - MOBILE
========================================================= */

@media (max-width: 768px) {

    .faq-section {
        margin: 45px auto;
        padding: 0 16px;
    }

    .faq-section h2 {
        font-size: 21px;
        line-height: 1.8;
        margin: 30px 0 18px;
    }

    .faq-section details {
        margin-bottom: 10px;
        border-radius: 10px;
    }

    .faq-section summary {
        padding: 15px 16px;
        padding-left: 42px;

        font-size: 13px;
        line-height: 1.9;
    }

    .faq-section summary::after {
        left: 15px;
        font-size: 20px;
    }

    .faq-section details p {
        padding: 0 16px 16px;

        font-size: 12px;
        line-height: 2.1;
    }

}

@media (max-width: 768px) {

    .article-content h2,
    .features-section h2,
    .faq-section h2 {
        font-size: 18px;
        line-height: 1.8;
    }

    .article-content h3,
    .features-section h3,
    .faq-section h3 {
        font-size: 16px;
        line-height: 1.8;
    }

}