:root{
  --teal:          var(--c-primary);
  --teal-light:    var(--c-primary-light);
  --teal-bg:       var(--c-primary-soft);
  --white:         var(--c-white);
  --gray-50:       var(--c-off-white);
  --gray-100:      var(--c-bg-soft);
  --gray-200:      var(--c-border);
  --text:          var(--c-text);
  --text-muted:    var(--c-muted);
  --dark:          var(--c-dark);
  --dark-2:        var(--c-dark-2);
  --dark-3:        var(--c-dark-3);
  --border:        var(--c-border-dark);
  --text-dim:      var(--c-text-dim);
  --text-soft:     var(--c-text-soft);
}

/* ========== TOP BANNER ========== */
.top-banner{
  background:#0f4f59;
  color:#fff;font-size:12.5px;
  text-align:center;padding:8px 16px;
  position:sticky;top:0;z-index:200;
}
.top-banner-track{
  display:flex;gap:60px;
  animation:scrollBanner 12s linear infinite;
  white-space:nowrap;width:max-content;
}
.top-banner-item{display:flex;align-items:center;gap:6px}
.top-banner-item .dot{width:5px;height:5px;background:#05BFDB;border-radius:50%;flex-shrink:0}
@keyframes scrollBanner{0%{transform:translateX(0)}100%{transform:translateX(50%)}}

/* ========== HEADER ========== */
.site-header{
  background:#fff;
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 16px;
  border-bottom:1px solid var(--gray-100);
  position:sticky;top:33px;z-index:190;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
}
.header-chat-btn,.header-search-btn{
  width:40px;height:40px;border-radius:12px;
  background:var(--gray-50);border:1px solid var(--gray-200);
  display:flex;align-items:center;justify-content:center;
  color:var(--teal);text-decoration:none;cursor:pointer;
  transition:.18s;border:none;
}
.header-chat-btn:hover,.header-search-btn:hover{background:var(--teal-bg)}
.header-chat-btn svg,.header-search-btn svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:1.8}
.header-logo img{height:38px;width:auto}

/* ========== SEARCH OVERLAY ========== */
.search-overlay{
  position:fixed;inset:0;z-index:300;
  background:rgba(0,0,0,.5);
  opacity:0;pointer-events:none;
  transition:.25s;
}
.search-overlay.open{opacity:1;pointer-events:auto}
.search-box{
  position:absolute;top:0;left:0;right:0;
  background:#fff;padding:16px;
  transform:translateY(-100%);
  transition:transform .3s cubic-bezier(.4,0,.2,1);
  border-radius:0 0 16px 16px;
  box-shadow:0 8px 24px rgba(0,0,0,.15);
}
.search-overlay.open .search-box{transform:translateY(0)}
.search-input-wrap{
  display:flex;align-items:center;gap:10px;
  background:var(--gray-50);border:1.5px solid var(--gray-200);
  border-radius:12px;padding:0 14px;
  transition:.2s;
}
.search-input-wrap:focus-within{border-color:var(--teal);background:#fff}
.search-input-wrap svg{width:18px;height:18px;stroke:var(--teal);fill:none;flex-shrink:0;stroke-width:1.8}
.search-input-wrap input{
  flex:1;height:46px;border:none;background:transparent;
  font-family:var(--font);font-size:14px;
  color:var(--text);outline:none;direction:rtl;
}
.search-input-wrap input::placeholder{color:var(--text-muted)}
.search-close{
  margin-top:10px;width:100%;padding:10px;
  background:var(--gray-100);border:none;border-radius:10px;
  font-family:var(--font);font-size:13px;
  color:var(--text-muted);cursor:pointer;
}

/* ========== DRAWER OVERLAY ========== */
.drawer-overlay{
  position:fixed;inset:0;z-index:250;
  background:rgba(0,0,0,.45);backdrop-filter:blur(2px);
  opacity:0;pointer-events:none;transition:.3s;
}
.drawer-overlay.open{opacity:1;pointer-events:auto}

/* ========== DRAWER ========== */
.drawer{
  position:fixed;top:0;right:0;bottom:0;
  width:85%;max-width:340px;
  background:#fff;z-index:260;
  transform:translateX(100%);
  transition:transform .32s cubic-bezier(.4,0,.2,1);
  display:flex;flex-direction:column;
  overflow:hidden;
}
.drawer.open{transform:translateX(0)}

/* هدر drawer */
.drawer-header{
  background:var(--teal);
  padding:20px 16px 16px;
  display:flex;align-items:center;justify-content:space-between;
  flex-shrink:0;
}
.drawer-logo img{height:34px;width:auto;filter:brightness(0) invert(1);opacity:.9}
.drawer-close{
  width:36px;height:36px;border-radius:10px;
  background:rgba(255,255,255,.15);border:none;
  display:flex;align-items:center;justify-content:center;
  color:#fff;cursor:pointer;transition:.18s;
}
.drawer-close:hover{background:rgba(255,255,255,.25)}
.drawer-close svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2}

/* پروفایل کوتاه */
.drawer-user{
  background:rgba(255,255,255,.1);
  margin:0;padding:12px 16px;
  display:flex;align-items:center;gap:10px;
  border-top:1px solid rgba(255,255,255,.1);
}
.drawer-user-ico{
  width:36px;height:36px;border-radius:50%;
  background:rgba(255,255,255,.2);
  display:flex;align-items:center;justify-content:center;
}
.drawer-user-ico svg{width:18px;height:18px;stroke:#fff;fill:none;stroke-width:1.5}
.drawer-user-text{font-size:12.5px;color:rgba(255,255,255,.85)}
.drawer-user-link{
  margin-right:auto;
  background:rgba(255,255,255,.2);
  border:1px solid rgba(255,255,255,.3);
  border-radius:8px;padding:5px 12px;
  color:#fff;font-size:12px;font-weight:600;
  text-decoration:none;transition:.18s;white-space:nowrap;
}
.drawer-user-link:hover{background:rgba(255,255,255,.3)}

/* محتوای اسکرول‌پذیر */
.drawer-body{flex:1;overflow-y:auto;overscroll-behavior:contain}
.drawer-body::-webkit-scrollbar{width:3px}
.drawer-body::-webkit-scrollbar-thumb{background:var(--gray-200);border-radius:99px}

/* آیتم‌های منو */
.menu-section{border-bottom:1px solid var(--gray-100)}
.menu-item{
  display:flex;align-items:center;
  padding:0 16px;height:52px;
  font-size:14px;color:var(--text);
  text-decoration:none;cursor:pointer;
  transition:.15s;position:relative;
  background:#fff;border:none;width:100%;text-align:right;
  font-family:var(--font);
}
.menu-item:hover,.menu-item:active{background:var(--teal-bg);color:var(--teal)}
.menu-item.has-sub{justify-content:space-between}
.menu-item .menu-ico{
  width:32px;height:32px;border-radius:9px;
  background:var(--teal-bg);
  display:flex;align-items:center;justify-content:center;
  margin-left:10px;flex-shrink:0;
}
.menu-item .menu-ico svg{width:16px;height:16px;stroke:var(--teal);fill:none;stroke-width:1.8}
.menu-item .menu-label{flex:1;text-align:right}
.menu-item .menu-badge{
  background:var(--teal);color:#fff;
  font-size:9.5px;font-weight:700;
  padding:2px 7px;border-radius:99px;
  margin-left:6px;
}
.menu-chevron{
  width:16px;height:16px;stroke:var(--text-muted);
  fill:none;stroke-width:2;flex-shrink:0;
  transition:transform .25s;
}
.menu-item.open .menu-chevron{transform:rotate(90deg)}

/* زیرمنو */
.submenu{
  max-height:0;overflow:hidden;
  background:var(--gray-50);
  transition:max-height .32s ease;
}
.submenu.open{max-height:600px}
.submenu-item{
  display:flex;align-items:center;gap:8px;
  padding:11px 20px 11px 16px;
  font-size:13px;color:var(--text-muted);
  text-decoration:none;border-bottom:1px solid var(--gray-100);
  transition:.15s;
}
.submenu-item::before{
  content:'';width:5px;height:5px;border-radius:50%;
  background:var(--gray-200);flex-shrink:0;transition:.15s;
}
.submenu-item:hover{color:var(--teal);background:var(--white);padding-right:24px}
.submenu-item:hover::before{background:var(--teal-light)}
.submenu-item:last-child{border-bottom:none}

/* زیرزیرمنو */
.sub-submenu{
  max-height:0;overflow:hidden;
  background:#fff;
  transition:max-height .28s ease;
}
.sub-submenu.open{max-height:400px}
.sub-submenu-item{
  display:block;padding:9px 32px;
  font-size:12.5px;color:#8a9ea2;
  text-decoration:none;
  border-bottom:1px solid var(--gray-100);
  transition:.15s;
}
.sub-submenu-item:hover{color:var(--teal);background:var(--teal-bg)}

/* آیتم با فلش باز */
.submenu-item.has-sub{
  display:flex;justify-content:space-between;cursor:pointer;
}
.submenu-item.has-sub .sub-chevron{
  width:14px;height:14px;stroke:var(--text-muted);
  fill:none;stroke-width:2;transition:transform .22s;flex-shrink:0;
}
.submenu-item.has-sub.open .sub-chevron{transform:rotate(90deg)}

/* لینک‌های سریع */
.quick-links{
  padding:14px 16px;
  display:grid;grid-template-columns:1fr 1fr;gap:8px;
}
.quick-link{
  display:flex;align-items:center;gap:8px;
  padding:10px 12px;border-radius:10px;
  background:var(--gray-50);border:1px solid var(--gray-200);
  text-decoration:none;color:var(--text-muted);font-size:12px;
  transition:.15s;
}
.quick-link:hover{border-color:var(--teal-light);color:var(--teal);background:var(--teal-bg)}
.quick-link svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.8;flex-shrink:0}

/* کارت تماس واتساپ */
.wa-card{
  margin:12px 16px;
  background:linear-gradient(135deg,#0f4f59,#0e6878);
  border-radius:14px;padding:14px 16px;
  display:flex;align-items:center;gap:12px;
}
.wa-card-ico{
  width:42px;height:42px;border-radius:12px;
  background:rgba(255,255,255,.15);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.wa-card-ico svg{width:22px;height:22px;stroke:#fff;fill:none;stroke-width:1.2}
.wa-card-text strong{display:block;color:#fff;font-size:13px;margin-bottom:2px}
.wa-card-text span{color:rgba(255,255,255,.65);font-size:11.5px}
.wa-card-btn{
  margin-right:auto;
  background:#25D366;color:#fff;
  border-radius:9px;padding:7px 14px;
  font-size:12px;font-weight:700;
  text-decoration:none;white-space:nowrap;
  font-family:var(--font);
}

/* فوتر drawer */
.drawer-footer{
  padding:12px 16px 16px;
  border-top:1px solid var(--gray-100);
  background:#fff;flex-shrink:0;
}
.drawer-footer-links{
  display:flex;gap:16px;justify-content:center;flex-wrap:wrap;
}
.drawer-footer-links a{
  font-size:11.5px;color:var(--text-muted);text-decoration:none;
}
.drawer-footer-links a:hover{color:var(--teal)}

/* ========== BOTTOM NAV ========== */
.bottom-nav{
  position:fixed;bottom:0;left:0;right:0;
  height:var(--bottom-h);
  background:#fff;
  border-top:1px solid var(--gray-100);
  box-shadow:0 -4px 20px rgba(0,0,0,.08);
  display:flex;align-items:stretch;
  z-index:200;
}
.bottom-nav-item{
  flex:1;display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  gap:4px;text-decoration:none;
  color:var(--text-muted);font-size:10.5px;
  transition:.18s;border:none;background:transparent;
  cursor:pointer;font-family:var(--font);
  position:relative;
}
.bottom-nav-item svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.6;transition:.18s}
.bottom-nav-item:hover,.bottom-nav-item.active{color:var(--teal)}
.bottom-nav-item:hover svg,.bottom-nav-item.active svg{stroke:var(--teal)}

/* آیتم واتساپ وسط - برجسته */
.bottom-nav-wa{
  flex:1;display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  gap:4px;text-decoration:none;
  font-size:10.5px;color:#25D366;
  font-family:var(--font);
  position:relative;cursor:pointer;border:none;background:transparent;
}
.bottom-nav-wa-ico{
  width:46px;height:46px;border-radius:50%;
  background:#25D366;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 14px rgba(37,211,102,.4);
  margin-top:-18px;
  border:3px solid #fff;
  transition:.2s;
}
.bottom-nav-wa:hover .bottom-nav-wa-ico{transform:scale(1.08);box-shadow:0 6px 18px rgba(37,211,102,.5)}
.bottom-nav-wa-ico svg{width:22px;height:22px;stroke:#fff;fill:none;stroke-width:1.2}

/* badge سبد */
.cart-badge{
  position:absolute;top:8px;right:calc(50% - 14px);
  min-width:16px;height:16px;
  background:var(--teal);color:#fff;
  border-radius:99px;font-size:9px;font-weight:700;
  display:flex;align-items:center;justify-content:center;
  padding:0 3px;border:2px solid #fff;
}

/* فاصله از نوار پایین */
.page-content{padding-bottom:calc(var(--bottom-h) + 16px)}

/* FOOTER */
/* ========== WAVE ========== */
/* ========== FOOTER ========== */
.site-footer{
  background:linear-gradient(175deg, var(--dark-3) 0%, var(--dark-2) 40%, var(--dark) 100%);
  color:#fff;
  position:relative;
}

/* subtle dot pattern */
.site-footer::before{
  content:'';
  position:absolute;inset:0;
  background-image:radial-gradient(rgba(5,191,219,.06) 1px,transparent 1px);
  background-size:28px 28px;
  pointer-events:none;
}

/* ========== TRUST STRIP ========== */
.footer-trust{
  border-bottom:1px solid var(--border);
  padding:24px 0;
  position:relative;
}
.footer-trust-inner{
  max-width:1280px;margin:0 auto;padding:0 32px;
  display:flex;align-items:stretch;
}
.trust-item{
  display:flex;align-items:center;gap:12px;
  flex:1;padding:0 24px;
  border-left:1px solid var(--border);
}
.trust-item:first-child{padding-right:0}
.trust-item:last-child{border-left:none}
.trust-ico{
  width:44px;height:44px;border-radius:12px;
  background:rgba(5,191,219,.1);border:1px solid rgba(5,191,219,.2);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.trust-ico svg{width:22px;height:22px;stroke:var(--teal-light);fill:none;stroke-width:1.5}
.trust-text strong{display:block;font-size:13px;color:#fff;margin-bottom:3px}
.trust-text span{font-size:11.5px;color:var(--text-dim)}

/* ========== MAIN ========== */
.footer-main{
  max-width:1280px;margin:0 auto;
  padding:52px 32px 40px;
  display:grid;
  grid-template-columns:260px 1fr 1fr 1fr 220px;
  gap:48px;
  position:relative;
}

/* ستون برند */
.footer-logo img{
  height:42px;width:auto;
  filter:brightness(0) saturate(100%) invert(72%) sepia(60%) saturate(400%) hue-rotate(155deg) brightness(95%);opacity:1;
}
.footer-about{
  margin-top:14px;font-size:12.5px;
  color:var(--text-dim);line-height:2;
}

/* شبکه‌های اجتماعی */
.footer-social-title{
  font-size:12px;font-weight:700;color:var(--text-soft);
  margin:20px 0 10px;letter-spacing:.3px;
}
.footer-social{display:flex;gap:8px;flex-wrap:wrap}
.social-btn{
  width:36px;height:36px;border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  color:var(--text-soft);text-decoration:none;
  transition:.2s;
}
.social-btn.s-instagram:hover{background:#E1306C;border-color:#E1306C;box-shadow:0 6px 16px rgba(225,48,108,.35);transform:translateY(-3px)}
.social-btn.s-telegram:hover{background:#2CA5E0;border-color:#2CA5E0;box-shadow:0 6px 16px rgba(44,165,224,.35);transform:translateY(-3px)}
.social-btn.s-whatsapp:hover{background:#25D366;border-color:#25D366;box-shadow:0 6px 16px rgba(37,211,102,.35);transform:translateY(-3px)}
.social-btn.s-youtube:hover{background:#FF0000;border-color:#FF0000;box-shadow:0 6px 16px rgba(255,0,0,.35);transform:translateY(-3px)}
.social-btn.s-pinterest:hover{background:#E60023;border-color:#E60023;box-shadow:0 6px 16px rgba(230,0,35,.35);transform:translateY(-3px)}
.social-btn:hover{color:#fff}
.social-btn svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:1.6}

/* عناوین ستون */
.footer-col-title{
  font-size:13.5px;font-weight:700;color:#fff;
  margin-bottom:20px;padding-bottom:12px;
  border-bottom:1px solid var(--border);
  position:relative;display:flex;align-items:center;
  justify-content:space-between;
}
.footer-col-title::after{
  content:'';position:absolute;
  bottom:-1px;right:0;width:28px;height:2px;
  background:var(--teal-light);border-radius:2px;
}
.toggle-ico{
  width:16px;height:16px;stroke:var(--text-dim);
  fill:none;stroke-width:2;flex-shrink:0;
  transition:transform .3s ease;display:none;
}

/* لینک‌ها */
.footer-links{list-style:none;display:flex;flex-direction:column;gap:0}
.footer-links a{
  font-size:12.5px;color:var(--text-dim);text-decoration:none;
  display:flex;align-items:center;gap:8px;
  padding:6px 0;border-bottom:1px solid rgba(255,255,255,.03);
  transition:.18s;
}
.footer-links a::before{
  content:'';width:4px;height:4px;border-radius:50%;
  background:var(--teal-light);opacity:.4;flex-shrink:0;
  transition:.18s;
}
.footer-links a:hover{color:#fff;padding-right:6px}
.footer-links a:hover::before{opacity:1}

/* ========== خرید حضوری ========== */
.footer-store{
  background:rgba(5,191,219,.06);
  border:1px solid rgba(5,191,219,.15);
  border-radius:14px;padding:16px;
}
.store-tag{
  display:inline-flex;align-items:center;gap:5px;
  background:rgba(5,191,219,.15);color:var(--teal-light);
  border:1px solid rgba(5,191,219,.25);
  font-size:11px;font-weight:700;
  padding:3px 10px;border-radius:99px;
  margin-bottom:14px;
}
.store-row{
  display:flex;align-items:flex-start;gap:8px;
  font-size:12px;color:var(--text-dim);
  line-height:1.7;margin-bottom:10px;
}
.store-row svg{stroke:var(--teal-light);fill:none;flex-shrink:0;margin-top:2px}
.store-row span{color:var(--text-soft)}
.store-cta{
  display:flex;align-items:center;justify-content:center;gap:6px;
  margin-top:14px;padding:10px;
  background:linear-gradient(135deg,var(--teal),#0e6878);
  border-radius:10px;color:#fff;font-size:12.5px;font-weight:700;
  text-decoration:none;transition:.2s;
  box-shadow:0 4px 14px rgba(15,79,89,.4);
}
.store-cta:hover{transform:translateY(-1px);box-shadow:0 6px 20px rgba(15,79,89,.5)}
.store-cta svg{stroke:currentColor;fill:none;width:14px;height:14px}

/* ========== DIVIDER ========== */
.footer-divider{
  height:1px;
  background:linear-gradient(90deg,transparent,var(--border) 20%,var(--border) 80%,transparent);
  max-width:1280px;margin:0 auto;
}

/* ========== BOTTOM BAR ========== */
.footer-bottom{
  max-width:1280px;margin:0 auto;
  padding:20px 32px 28px;
  display:flex;align-items:center;
  justify-content:space-between;gap:20px;
  position:relative;
}
.footer-namad{display:flex;gap:8px;align-items:center}
.namad-item{
  width:90px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:14px;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  gap:8px;padding:12px 6px 10px;
  cursor:pointer;transition:.22s;
  text-decoration:none;
}
.namad-item:hover{
  border-color:rgba(5,191,219,.4);
  background:rgba(5,191,219,.08);
  transform:translateY(-3px);
  box-shadow:0 8px 24px rgba(0,0,0,.3);
}
.namad-item img{
  width:64px;height:64px;
  object-fit:contain;
  display:block;
  image-rendering:crisp-edges;
}
.namad-item .namad-txt{
  font-size:10px;color:rgba(255,255,255,.5);
  text-align:center;line-height:1.4;
}
.footer-copy{
  font-size:12px;color:var(--text-dim);text-align:center;line-height:1.8;
}
.footer-copy a{color:var(--teal-light);text-decoration:none}
.footer-payments{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.payment-badge{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.1);
  border-radius:10px;
  padding:6px 10px;
  display:inline-flex;align-items:center;justify-content:center;
  transition:.2s;
  text-decoration:none;
}
.payment-badge img{
  height:32px;width:auto;
  object-fit:contain;display:block;
  opacity:.85;transition:.2s;
}
.payment-badge:hover{
  border-color:rgba(5,191,219,.35);
  background:rgba(255,255,255,.12);
  transform:translateY(-2px);
}
.payment-badge:hover img{opacity:1}

/* ========== MOBILE ========== */
@media(max-width:1023px){
  .footer-trust-inner{flex-wrap:wrap;padding:0 16px}
  .trust-item{
    flex:1 1 45%;border-left:none;
    border-bottom:1px solid var(--border);
    padding:14px 8px;
  }
  .trust-item:nth-child(odd){border-left:1px solid var(--border)}
  .trust-item:nth-last-child(-n+2){border-bottom:none}

  .footer-main{
    grid-template-columns:1fr;
    padding:28px 20px 20px;
    gap:0;
  }
  .footer-col{border-bottom:1px solid var(--border)}
  .footer-col-title{
    cursor:pointer;margin-bottom:0;
    padding:15px 0;border-bottom:none;
  }
  .footer-col-title::after{display:none}
  .toggle-ico{display:block}
  .footer-col.open .toggle-ico{transform:rotate(180deg)}
  .footer-col-body{
    max-height:0;overflow:hidden;
    transition:max-height .35s ease,padding .3s;
    padding-bottom:0;
  }
  .footer-col.open .footer-col-body{
    max-height:500px;padding-bottom:18px;
  }
  .footer-brand .footer-col-title{display:none}
  .footer-brand .footer-col-body{max-height:none!important;overflow:visible!important;padding-bottom:20px}

  .footer-bottom{flex-direction:column;text-align:center;padding:16px 20px 24px}
  .footer-namad{justify-content:center}
  .footer-payments{justify-content:center}
}
@media(min-width:1024px){
  .footer-col-body{max-height:none!important;overflow:visible!important}
}
/* ===== FIBOSEARCH MOBILE OVERLAY ===== */
.search-overlay .dgwt-wcas-search-wrapp{width:100%!important}
.search-overlay .dgwt-wcas-sf-wrapp,
.search-overlay .dgwt-wcas-search-wrapp form{
  display:flex!important;align-items:center!important;
  border:1.5px solid #dde4e6!important;border-radius:12px!important;
  background:#f8fafb!important;overflow:hidden!important;height:46px!important;
}
.search-overlay .dgwt-wcas-search-input,
.search-overlay input[type="search"]{
  flex:1!important;height:46px!important;border:none!important;
  background:transparent!important;padding:0 14px!important;
  font-family:var(--font)!important;font-size:14px!important;
  outline:none!important;color:#374151!important;direction:rtl!important;
  box-shadow:none!important;width:100%!important;
}
.search-overlay .dgwt-wcas-ico-magnifier-handler{
  width:46px!important;height:46px!important;border:none!important;
  background:transparent!important;display:flex!important;
  align-items:center!important;justify-content:center!important;
  color:#0f4f59!important;flex-shrink:0!important;
}


/* ================================================
   FIBOSEARCH — MOBILE OVERLAY
================================================ */
.search-overlay{
  position:fixed;
  inset:0;
  z-index:9999;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(4px);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top:0;
}
.search-overlay.open{
  opacity:1;
  pointer-events:auto;
}
.search-overlay-inner{
  width:100%;
  background:#fff;
  padding:16px;
  border-radius:0 0 20px 20px;
  box-shadow:0 8px 32px rgba(0,0,0,.18);
  transform:translateY(-100%);
  transition:transform .3s cubic-bezier(.4,0,.2,1);
}
.search-overlay.open .search-overlay-inner{
  transform:translateY(0);
}

/* FiboSearch داخل overlay موبایل */
.search-overlay-box{
  margin-bottom:12px;
}
.search-overlay-box .dgwt-wcas-search-wrapp{
  width:100%!important;
}
.search-overlay-box .dgwt-wcas-sf-wrapp{
  display:flex!important;
  align-items:center!important;
  height:50px!important;
  border:1.5px solid #dde4e6!important;
  border-radius:14px!important;
  background:#f7fafa!important;
  overflow:hidden!important;
  transition:border-color .2s!important;
}
.search-overlay-box .dgwt-wcas-sf-wrapp:focus-within{
  border-color:#0f4f59!important;
  background:#fff!important;
  box-shadow:0 0 0 3px rgba(15,79,89,.08)!important;
}
.search-overlay-box .dgwt-wcas-search-input{
  flex:1!important;
  height:48px!important;
  border:none!important;
  background:transparent!important;
  padding:0 14px!important;
  font-family:var(--font)!important;
  font-size:15px!important;
  color:#1a2e32!important;
  direction:rtl!important;
  outline:none!important;
  box-shadow:none!important;
  -webkit-appearance:none!important;
}
.search-overlay-box .dgwt-wcas-search-input::placeholder{
  color:#9cb3b8!important;
  font-size:14px!important;
}
.search-overlay-box .dgwt-wcas-ico-magnifier-handler{
  width:50px!important;
  height:48px!important;
  border:none!important;
  background:transparent!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  color:#0f4f59!important;
  flex-shrink:0!important;
  cursor:pointer!important;
}
.search-overlay-box .dgwt-wcas-ico-magnifier-handler svg,
.search-overlay-box .dgwt-wcas-ico-magnifier{
  width:22px!important;
  height:22px!important;
  fill:none!important;
  stroke:#0f4f59!important;
  stroke-width:1.8!important;
  stroke-linecap:round!important;
}
.search-overlay-box .dgwt-wcas-suggestions-wrapp{
  border-radius:12px!important;
  box-shadow:0 4px 20px rgba(0,0,0,.1)!important;
  border:1px solid #e5e7eb!important;
  margin-top:6px!important;
  max-height:60vh!important;
  overflow-y:auto!important;
}
.search-overlay-box .dgwt-wcas-suggestion{
  padding:12px 16px!important;
  direction:rtl!important;
  font-size:13.5px!important;
  font-family:var(--font)!important;
}

/* دکمه بستن */
.search-overlay-close{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  width:100%;
  padding:12px;
  border:none;
  background:#f4f7f8;
  border-radius:10px;
  font-family:var(--font);
  font-size:13px;
  color:#6b8a90;
  cursor:pointer;
  transition:background .18s;
}
.search-overlay-close:hover{
  background:#e8eef0;
  color:#0f4f59;
}
.search-overlay-close svg{
  width:16px;
  height:16px;
}

/* ===== FOOTER ACCORDION (MOBILE) ===== */
@media (max-width:767px){
  .footer-col-body{
    max-height:0!important;
    overflow:hidden!important;
    transition:max-height .32s ease!important;
  }
  .footer-col-body.open{
    max-height:500px!important;
  }
  .footer-col-title{
    cursor:pointer!important;
    user-select:none!important;
  }
  .footer-col-title::after{
    content:'\276F';
    float:left;
    transform:rotate(90deg);
    transition:transform .25s;
    font-size:11px;
    opacity:.5;
  }
  .footer-col-title.open::after{
    transform:rotate(-90deg);
  }
}
