{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tahoma', 'Vazir', sans-serif;
    background: linear-gradient(135deg, #f5f0eb 0%, #e8e0d8 100%);
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/ ====== هدر برند ====== /
.brand-header {
    text-align: center;
    padding: 20px 0 30px 0;
    border-bottom: 2px solid #d4af37;
    margin-bottom: 25px;
    position: relative;
}

.brand-header h1 {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #d4af37, #f5e56b, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.brand-header h1::before {
    content: "✦ ";
    color: #d4af37;
    -webkit-text-fill-color: #d4af37;
}

.brand-header h1::after {
    content: " ✦";
    color: #d4af37;
    -webkit-text-fill-color: #d4af37;
}

.brand-slogan {
    color: #5a5a5a;
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: 300;
    margin-top: 5px;
}

/ ====== بخش فیلتر ====== /
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    background: #faf8f6;
    padding: 20px 25px;
    border-radius: 14px;
    margin-bottom: 30px;
    border: 1px solid #e8e0d8;
}

.filters select,
.filters input {
    padding: 11px 18px;
    border: 2px solid #ddd6ce;
    border-radius: 10px;
    font-size: 14px;
    background: white;
    min-width: 150px;
    font-family: inherit;
    transition: all 0.3s ease;
    color: #2a2a2a;
}

.filters select:focus,
.filters input:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.filters select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4af37' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
    padding-left: 40px;
}

.filters button {
    padding: 11px 30px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.filters button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.filters button.reset {
    background: #2a2a2a;
    color: #f5f0eb;
}

.filters button.reset:hover {
    background: #1a1a1a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/ ====== عنوان بخش ====== /
.section-title {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-right: 15px;
    border-right: 4px solid #d4af37;
    font-weight: 700;
}

/ ====== لیست آگهی‌ها ====== */
.ads-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.ad-item {
    background: #ffffff;
    border: 1px solid #ede8e2;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ad-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #d4af37, #f5e56b);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ad-item:hover::before {
    opacity: 1;
}

.ad-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
}

.ad-item:active {
    transform: scale(0.97)

;
}

.ad-item .category {
    display: inline-block;
    background: linear-gradient(135deg, #faf6f0, #f0ebe3);
    color: #b8962e;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    border: 1px solid #e8dcc8;
}

.ad-item .badge-luxury {
    display: inline-block;
    background: #d4af37;
    color: #1a1a1a;
    padding: 2px 12px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    margin-right: 8px;
    letter-spacing: 0.5px;
}

.ad-item h3 {
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
}

.ad-item .city {
    color: #7a7a7a;
    font-size: 14px;
}

.ad-item .price {
    color: #b8962e;
    font-size: 20px;
    font-weight: 800;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0ebe3;
}

.ad-item .click-hint {
    margin-top: 10px;
    font-size: 11px;
    color: #b8962e;
    opacity: 0.6;
    transition: opacity 0.3s;
    letter-spacing: 0.5px;
}

.ad-item:hover .click-hint {
    opacity: 1;
}

/* ====== نتیجه خالی ====== /
.no-result {
    text-align: center;
    color: #7a7a7a;
    font-size: 18px;
    padding: 50px 0;
    grid-column: 1 / -1;
}

.no-result .icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

/ ====== ریسپانسیو ====== */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    .brand-header h1 {
        font-size: 28px;
    }
    .filters select,
    .filters input {
        min-width: 100%;
    }
    .filters button {
        width: 100%;
    }
    .ads-list {
        grid-template-columns: 1fr;
    }
}

body{font-family:'Vazirmatn',sans-serif;margin:0;background:#f7f7f7;color:#222;overflow-x:hidden}
.lux-header{background:rgba(255,255,255,0.85);backdrop-filter:blur(12px);display:flex;align-items:center;justify-content:space-between;padding:12px 30px;position:sticky;top:0;z-index:1000;border-bottom:1px solid #eee}
.lux-logo .logotext{font-weight:900;font-size:28px;color:#d33}
.lux-navbar{display:flex;gap:25px;align-items:center}
.lux-navbar a{text-decoration:none;color:#333;font-weight:600}
.lux-navbar a:hover{color:#d33}
.mega-wrapper{position:relative}
.mega-btn{background:none;border:none;font-size:16px;font-weight:700;cursor:pointer}
.mega-menu{position:absolute;background:#fff;width:700px;box-shadow:0 10px 30px rgba(0,0,0,0.1);display:none;padding:20px;border-radius:12px;top:40px}
.mega-wrapper:hover .mega-menu{display:flex;gap:25px}
.mega-col h4{margin-bottom:10px;color:#d33}
.mega-col a{display:block;text-decoration:none;color:#444;padding:3px 0}
.mega-col a:hover{color:#d33}
.lux-actions{display:flex;align-items:center;gap:10px}
.lux-search{padding:8px 12px;width:180px;border-radius:8px;border:1px solid #ccc}
.cart-btn{background:#d33;padding:8px 14px;border:none;border-radius:8px;color:#fff}
.lux-banner{position:relative;width:90%;max-width:1200px;margin:30px auto;border-radius:25px;overflow:hidden;text-align:center;background:linear-gradient(145deg,#1a1a1a,#333);box-shadow:0 15px 40px rgba(0,0,0,0.6),0 0 20px rgba(255,255,255,0.05);transition:all 0.4s ease}
.lux-banner h1{margin:20px 0 10px;color:#fff;font-size:2.5rem;font-family:'Arial Black',sans-serif;letter-spacing:2px;text-shadow:4px 4px 20px rgba(0,0,0,0.7),0 0 10px rgba(255,255,255,0.1)}
.lux-banner video{width:100%;height:400px;object-fit:cover;display:block;border-radius:0 0 25px 25px;box-shadow:inset 0 0 20px rgba(0,0,0,0.3),0 15px 35px rgba(0,0,0,0.5);transition:transform .4s ease,box-shadow .4s ease}
.lux-banner:hover video{transform:scale(1.02)}
.lux-banner.colorful{width:100vw;max-width:100%;height:80px;margin:0;padding:0;display:flex;align-items:center;justify-content:center;background:linear-gradient(90deg,#fff,#1f3a5f,#27ae60,#ff7a00,#e6a4b4,#e0e0e0);background-size:600% 600%;animation:gradientMove 15s ease infinite;box-shadow:0 4px 15px rgba(0,0,0,0.3);color:#fff;overflow:hidden}
@keyframes gradientMove{0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}
.brand-section{padding:30px;text-align:center}
.brand-slider{display:flex;gap:20px;justify-content:center;flex-wrap:wrap}
.brand-item{width:70px;height:70px;border-radius:50%;overflow:hidden;display:flex;align-items:center;justify-content:center;background:#fff;border:1px solid #eee}
.brand-item img{width:100%;height:100%;object-fit:cover}

.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;padding:20px}
.product-card{display:flex;gap:8px;padding:8px;border:1px solid #eee;border-radius:10px;background:#fff;text-decoration:none;color:#222}
.image-company{width:70px;height:70px;object-fit:cover;border-radius:8px}
.product-info{display:flex;flex-direction:column;gap:4px;font-size:12px}
.title{color:#0d6efd;font-size:13px}
.price span{font-weight:700;font-size:12px}
.agency{color:#777;margin-top:auto;font-size:11px}

.cat-grid{padding:20px;display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.cat-card{background:#d4af37;border-radius:14px;overflow:hidden;box-shadow:0 5px 20px #0000001b}

.lux-footer{background:#222;color:#fff;padding:25px;text-align:center;display:block;width:100%;box-sizing:border-box}
.lux-footer .social{display:flex;justify-content:center;gap:12px;margin:12px 0}
.lux-footer .social a{display:inline-flex;width:36px;height:36px;align-items:center;justify-content:center;border-radius:50%;background:rgba(255,255,255,0.12)}

@media(max-width:992px){
  .lux-header{flex-wrap:wrap;padding:10px 15px}
  .lux-navbar{width:100%;justify-content:center;gap:15px;margin-top:10px}
  .lux-actions{width:100%;justify-content:center;margin-top:10px}
  .lux-search{width:100%;max-width:300px}
  .mega-menu{width:100%;right:0;left:0;flex-wrap:wrap}
  .mega-wrapper:hover .mega-menu{display:grid;grid-template-columns:repeat(2,1fr)}
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .cat-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .lux-banner{width:95%;margin:20px auto}
  .lux-banner video{height:220px}
  .lux-banner h1{font-size:1.4rem}
  .lux-banner.colorful{height:60px}
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .cat-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:480px){
  .product-grid,.cat-grid{grid-template-columns:1fr}
}
.lux-footer{
    background:#222;
    color:#fff;
    padding:25px;
    text-align:center;
    display:block;
    width:100%;
    box-sizing:border-box;
  }
  
  .lux-footer .social{
    display:flex;
    justify-content:center;
    gap:12px;
    margin:12px 0;
  }
  
  .lux-footer .social a{
    display:inline-flex;
    width:36px;
    height:36px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.12);
  }
  .lux-footer{
    background:#222;
    color:#fff;
    padding:25px;
    text-align:center;
    display:block;
    width:100%;
    box-sizing:border-box;
  }
  
  .lux-footer .social{
    display:flex;
    justify-content:center;
    gap:12px;
    margin:12px 0;
  }
  
  .lux-footer .social a{
    display:inline-flex;
    width:36px;
    height:36px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.12);
  }
    
  

  
/* ==========================
   تنظیمات پایه
========================== */
body {
  font-family: 'Vazirmatn', sans-serif;
  margin: 0;
  background: #f7f7f7;
  color: #222;
  direction: rtl;
}

/* ==========================
 هدر
========================== */
.lux-header {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  border-bottom: 1px solid #eee;
}

.logo-area {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lux-logo .logotext {
  font-size: 22px;
  font-weight: 900;
  color: #d33;
}

.lux-navbar {
  display: flex;
  gap: 20px;
}

.lux-navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.lux-search-form {
  display: flex;
  gap: 8px;
}

.lux-search-form input {
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.lux-search-form button {
  padding: 7px 10px;
  border-radius: 8px;
  border: none;
  background: #111;
  color: #fff;
}

/* ==========================
 بنر
========================== */
.lux-banner {
  text-align: center;
  margin: 25px auto;
}

.lux-banner.colorful {
  padding: 18px;
  background: linear-gradient(90deg,#ff6b6b,#ffb86b,#6bffb8);
  color: #fff;
}

.lux-banner.colorful p {
  margin-top: 8px;
  font-size: 14px;
}

/* ویدیو */
.video-banner video {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

/* ==========================
 بخش‌ها
========================== */
.section {
  padding: 40px 0;
  background: #fff;
  margin: 20px 0;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 26px;
  color: #111;
}

.section p {
  text-align: center;
  line-height: 1.7;
  color: #555;
}

/* گرید */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.card, .product-card, .review-card {
  background: #f9f9f9;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card h3, .product-card h3 {
  margin-top: 0;
  color: #d33;
}

.product-card .price {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  color: #111;
}

.advantages-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
}

.advantages-list li {
  background: #f1f1f1;
  padding: 12px 15px;
  margin: 10px 0;
  border-radius: 8px;
  color: #444;
}

/* نظرات */
.review-card p {
  font-size: 14px;
  color: #333;
}

.review-card .author {
  display: block;
  margin-top: 12px;
  color: #777;
  font-size: 12px;
}

/* ==========================
 فوتر
========================== */
footer.lux-footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 12px;
}

footer.lux-footer p {
  font-size: 11px;
  margin: 4px 0;
}

footer.lux-footer .social {
  margin: 8px 0;
}

footer.lux-footer .social a {
  font-size: 14px;
  margin: 0 6px;
  color: #fff;
  text-decoration: none;
}

.footer-site {
  font-size: 10px;
  opacity: 0.8;
}

/* موبایل */
@media (max-width: 768px) {
  .lux-navbar {
      display: none;
  }
  .grid {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  footer.lux-footer {
      font-size: 10px;
  }
}

/* ==========================
 آیکن شبکه‌های اجتماعی
========================== */
.lux-footer .social a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}

.lux-footer .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


body{font-family:'Vazirmatn',sans-serif;margin:0;background:#f7f7f7;color:#222}.lux-header{background:#ffffffd9;backdrop-filter:blur(12px);display:flex;align-items:center;justify-content:space-between;padding:12px 30px;position:sticky;top:0;z-index:1000;border-bottom:1px solid #eee}.lux-logo .logotext{font-weight:900;font-size:28px;color:#d33}.lux-navbar{display:flex;gap:25px;align-items:center}.lux-navbar a{text-decoration:none;color:#333;font-weight:600}.lux-navbar a:hover{color:#d33}.mega-wrapper{position:relative}.mega-btn{background:none;border:none;font-size:16px;font-weight:700;cursor:pointer}.mega-menu{position:absolute;background:#fff;width:700px;box-shadow:0 10px 30px rgba(0,0,0,0.1);display:none;padding:20px;border-radius:12px;top:40px}.mega-wrapper:hover .mega-menu{display:flex;gap:25px}.mega-col h4{margin-bottom:10px;color:#d33}.mega-col a{display:block;text-decoration:none;color:#444;padding:3px 0}.mega-col a:hover{color:#d33}.lux-actions{display:flex;align-items:center;gap:10px}.lux-search{padding:8px 12px;width:180px;border-radius:8px;border:1px solid #ccc}.cart-btn{background:#d33;padding:8px 14px;border:none;border-radius:8px;color:#fff}.lux-banner{position:relative;width:90%;max-width:1200px;margin:30px auto;border-radius:25px;overflow:hidden;text-align:center;background:linear-gradient(145deg,#1a1a1a,#333);box-shadow:0 15px 40px rgba(0,0,0,0.6),0 0 20px rgba(255,255,255,0.05);transition:all 0.4s ease}.lux-banner h1{margin:20px 0 10px;color:#fff;font-size:2.5rem;font-family:'Arial Black',sans-serif;letter-spacing:2px;text-shadow:4px 4px 20px rgba(0,0,0,0.7),0 0 10px rgba(255,255,255,0.1)}.lux-banner video{width:100%;height:400px;object-fit:cover;display:block;border-radius:0 0 25px 25px;box-shadow:inset 0 0 20px rgba(0,0,0,0.3),0 15px 35px rgba(0,0,0,0.5);transition:transform 0.4s ease,box-shadow 0.4s ease}.lux-banner video:hover{transform:scale(1.02);box-shadow:inset 0 0 25px rgba(0,0,0,0.4),0 25px 50px rgba(0,0,0,0.7)}.lux-banner .close-video{position:absolute;top:15px;right:15px;width:35px;height:35px;line-height:33px;border-radius:50%;border:none;font-size:1.5rem;color:#fff;background:rgba(0,0,0,0.7);cursor:pointer;box-shadow:0 5px 15px rgba(0,0,0,0.5);transition:background 0.3s,transform 0.3s}.lux-banner .close-video:hover{background:rgba(0,0,0,0.9);transform:scale(1.1)}.lux-banner .toggle-sound{position:absolute;top:15px;right:60px;width:35px;height:35px;line-height:33px;border-radius:50%;border:none;font-size:1.5rem;color:#fff;background:rgba(0,0,0,0.7);cursor:pointer;box-shadow:0 5px 15px rgba(0,0,0,0.5);opacity:0;pointer-events:none;transition:opacity 0.3s,transform 0.3s,background 0.3s}.lux-banner:hover .toggle-sound{opacity:1;pointer-events:auto}.lux-banner .toggle-sound:hover{background:rgba(0,0,0,0.9);transform:scale(1.1)}.lux-banner.colorful{width:100vw;max-width:100%;height:80px;margin:0;padding:0;display:flex;align-items:center;justify-content:center;background:linear-gradient(90deg,#ffffff,#1f3a5f,#27ae60,#ff7a00,#e6a4b4,#e0e0e0);background-size:600% 600%;animation:gradientMove 15s ease infinite;box-shadow:0 4px 15px rgba(0,0,0,0.3);color:#fff;overflow:hidden}@keyframes gradientMove{0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}.lux-banner h1{font-size:1.8rem;font-family:'Arial Black',sans-serif;text-shadow:2px 2px 10px rgba(0,0,0,0.5);margin:0;transition:transform 0.3s ease}.lux-banner h1:hover{transform:scale(1.05)}.brand-section{padding:30px;text-align:center}.brand-slider{display:flex;gap:20px;justify-content:center}.product-grid{padding:20px;display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:20px}.product-card{background:#ff4500;border-radius:12px;padding:12px;box-shadow:0 5px 20px #0000000a;transition:.3s}.product-card:hover{transform:translateY(-5px)}.cat-grid{padding:20px;display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:20px}.cat-card{background:#d4af37;border-radius:14px;overflow:hidden;box-shadow:0 5px 20px #0000001b}.lux-footer{background:#222;color:#fff;padding:25px;text-align:center}
html,body{max-width:100%;overflow-x:hidden}img,video{max-width:100%;height:auto}@media(max-width:992px){.lux-header{flex-wrap:wrap;padding:10px 15px}.lux-navbar{width:100%;justify-content:center;gap:15px;margin-top:10px}.lux-actions{width:100%;justify-content:center;margin-top:10px}.lux-search{width:100%;max-width:300px}.mega-menu{width:100%;right:0;left:0;flex-wrap:wrap}.mega-wrapper:hover .mega-menu{display:grid;grid-template-columns:repeat(2,1fr)}}@media(max-width:576px){.mega-wrapper:hover .mega-menu{grid-template-columns:1fr}.lux-footer{font-size:14px;line-height:1.8}.social a{font-size:18px}}@media(max-width:768px){.lux-banner{width:95%;margin:20px auto}.lux-banner video{height:220px}.lux-banner h1{font-size:1.4rem}.lux-banner.colorful{height:60px}.brand-slider{flex-wrap:wrap;gap:12px}.product-grid{grid-template-columns:repeat(2,1fr)}.cat-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:480px){.product-grid,.cat-grid{grid-template-columns:1fr}}


/* نسخه فشرده‌شده برای سرعت بیشتر */
body {
  font-family: 'Vazirmatn', sans-serif;
  margin: 0;
  background: #f7f7f7;
  color: #222;
}
.lux-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}
.lux-navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}
.lux-navbar a:hover {
  color: #d33;
}

.mega-menu {
  width: 300px;
  font-family: Tahoma, sans-serif;
  direction: rtl;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mega-col h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.menu-item {
  position: relative;
  margin-bottom: 5px;
}

.menu-link {
  display: block;
  padding: 8px 10px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  cursor: pointer;
  border-radius: 4px;
}

.menu-link:hover {
  background-color: #f0f0f0;
}

.submenu {
  display: none;
  padding-right: 10px;
  margin-top: 3px;
  background-color: #f9f9f9;
  border-left: 2px solid #ccc;
  border-radius: 4px;
}

.submenu a {
  display: block;
  padding: 5px 8px;
  text-decoration: none;
  color: #555;
}

.submenu a:hover {
  background-color: #e0e0e0;
}

/* زیرمنوی تو در تو */
.submenu .menu-item .submenu {
  border-left: 2px solid #aaa;
  padding-left: 10px;
  margin-top: 3px;
}

.col-content {
  display: none;
}

.mega-col.active .col-content {
  display: block;
}

.col-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.col-content li a {
  display: block;
  padding: 6px 0;
  text-decoration: none;
}

.col-content {
  display: none;
}

.mega-col.active .col-content {
  display: block;
}

.sub-menu {
  display: none;
  padding-right: 15px;
}

.has-sub:hover .sub-menu {
  display: block;
}

/* ظاهر */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li a {
  display: block;
  padding: 6px 0;
  text-decoration: none;
}

.product-image-box{
  position: relative;
  width: 250px;
}

.product-image-box img{
  width: 100%;
  border-radius: 12px;
  display: block;
}

.add-to-cart-mini{
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(192,0,0,0.9);
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
}




.brand-slider{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
.brand-item{width:70px;height:70px;border-radius:50%;overflow:hidden;display:flex;align-items:center;justify-content:center;background:#fff;border:1px solid #eee}
.brand-item img{width:100%;height:100%;object-fit:cover}








.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.product-card{display:flex;flex-direction:column;gap:8px;padding:10px;border:1px solid #eee;border-radius:10px;background:#fff;text-decoration:none;color:#222}
.product-image-box{position:relative}
.add-to-cart-mini{position:absolute;top:6px;right:6px;background:#0d6efd;color:#fff;padding:4px 8px;border-radius:6px;font-size:12px;cursor:pointer}
.image-company{width:100%;height:140px;object-fit:cover;border-radius:8px}
.product-info{display:flex;flex-direction:column;gap:4px;font-size:13px}
.title{font-weight:700;color:#0d6efd}
.old-price{color:#f10101;font-size:13px}
.price{font-weight:700;font-size:14px}

/* اسکرول مخفی و روان */
.mega-menu{
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;

  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
}

.mega-menu::-webkit-scrollbar{
  width: 0;
  display: none;
}

/* اسکرول نرم */
.mega-menu{
  scroll-behavior: smooth;
}

.mega-menu{
  max-height:80vh;
  overflow-y:auto;
  scrollbar-width:none;
}

.mega-menu:hover{
  scrollbar-width:thin;
  scrollbar-color:#eb0b0b transparent;
}

.mega-menu::-webkit-scrollbar{
  width:6px;
}

.mega-menu::-webkit-scrollbar-track{
  background:transparent;
}

.mega-menu::-webkit-scrollbar-thumb{
  background:#b91414;
  border-radius:20px;
}

.mega-menu::-webkit-scrollbar-thumb:hover{
  background:#a82c2c;
}