:root{
  --teal:          var(--c-primary);
  --teal-light:    var(--c-primary-light);
  --gray-50:       var(--c-off-white);
  --gray-100:      var(--c-bg-soft);
  --gray-700:      var(--c-gray-700);
  --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{height:44px;background:linear-gradient(90deg,#0b3d46,#0f4f59 40%,#0b3d46);display:flex;align-items:center;justify-content:center;overflow:hidden}
.top-banner-track{display:flex;gap:80px;animation:scrollBanner 14s linear infinite;white-space:nowrap}
.top-banner-item{color:#fff;font-size:13px;display:flex;align-items:center;gap:8px}
.top-banner-item .dot{width:6px;height:6px;background:#05BFDB;border-radius:50%;animation:dotPulse 2s infinite}
@keyframes scrollBanner{0%{transform:translateX(0)}100%{transform:translateX(50%)}}
@keyframes dotPulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.4)}}

/* HEADER */
.site-header{background:#fff;box-shadow:0 1px 0 #eef3f4;position:sticky;top:0;z-index:1000}
.header-main{max-width:1280px;margin:0 auto;padding:0 28px;height:70px;display:flex;align-items:center;gap:24px}

/* LOGO */
.logo{display:flex;align-items:center;text-decoration:none;flex-shrink:0}
.logo img{height:46px;width:auto;display:block}



/* ACTIONS */
.header-actions{display:flex;align-items:center;gap:6px;margin-right:auto}
.action-btn{
  display:flex;align-items:center;gap:6px;
  padding:8px 12px;border-radius:999px;border:none;background:transparent;
  cursor:pointer;font-family:var(--font);font-size:13px;color:#374151;
  text-decoration:none;transition:.18s;position:relative;
}
.action-btn:hover{background:#f0f6f7;color:var(--teal)}
.action-btn svg{width:19px;height:19px;flex-shrink:0}
.action-sep{width:1px;height:20px;background:#e2e8ea}
.cart-badge{
  position:absolute;top:2px;left:8px;
  min-width:17px;height:17px;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;
}

/* واتساپ – دقیقاً مثل قالب: outline stroke + pulse */
.kh-whatsapp{color:#0e505e}
.kh-whatsapp svg{
  width:22px;height:22px;
  stroke:currentColor;fill:none;stroke-width:1;
  animation:kh-whatsapp-pulse 3s ease-in-out infinite;
}
@keyframes kh-whatsapp-pulse{
  0%{transform:scale(1);color:#0e505e}
  33%{transform:scale(1.15);color:#25d366}
  66%{transform:scale(1);color:#0e505e}
  100%{transform:scale(1);color:#0e505e}
}

/* NAV */
.header-nav{background:var(--teal);position:relative;z-index:999}
.header-nav-inner{max-width:1280px;margin:0 auto;padding:0 28px;display:flex;align-items:stretch}
.desktop-menu{display:flex;list-style:none;gap:2px;margin:0;padding:0}
.desktop-menu>li{position:static}
.desktop-menu>li>a{
  display:flex;align-items:center;gap:5px;
  padding:0 16px;height:50px;
  color:rgba(255,255,255,.88);text-decoration:none;
  font-size:14.5px;font-weight:500;
  position:relative;white-space:nowrap;transition:.18s;
}
.desktop-menu>li>a:hover{color:#fff}
.desktop-menu>li>a::after{
  content:'';position:absolute;
  bottom:0;right:16px;left:16px;height:3px;
  background:var(--teal-light);border-radius:3px 3px 0 0;
  transform:scaleX(0);transform-origin:center;
  transition:transform .28s cubic-bezier(.34,1.56,.64,1);
}
.desktop-menu>li:hover>a::after{transform:scaleX(1)}
.chevron{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2;transition:transform .22s;display:block}
.desktop-menu>li:hover .chevron{transform:rotate(180deg)}

/* MEGA MENU */
.mega-wrap{
  position:fixed;
  background:#fff;border-radius:0 0 18px 18px;
  box-shadow:0 20px 60px rgba(15,79,89,.2);
  z-index:900;
  opacity:0;pointer-events:none;
  transform:translateY(-8px);
  transition:opacity .22s ease,transform .22s ease;
  /* موقعیت و عرض از JS تنظیم میشه */
}
.desktop-menu>li:hover .mega-wrap{opacity:1;pointer-events:auto;transform:translateY(0)}

.mega-box{padding:28px 32px 24px}

/* CTA */
.mega-cta-row{display:flex;justify-content:flex-end;gap:12px;margin-bottom:22px}
.mega-cta{
  display:inline-flex;align-items:center;gap:7px;
  padding:9px 20px;border-radius:8px;
  font-family:var(--font);font-size:13.5px;font-weight:600;
  cursor:pointer;text-decoration:none;border:none;transition:.18s;
}
.mega-cta-primary{background:var(--teal);color:#fff}
.mega-cta-primary:hover{background:#0d3d47}
.mega-cta-secondary{background:#f0f7f8;color:var(--teal);border:1.5px solid #c8e0e4}
.mega-cta-secondary:hover{background:#e0f0f3}
.mega-cta svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:2;transform:scaleX(-1)}
.mega-divider{height:1px;background:#eef3f4;margin-bottom:22px}

/* GRID – 3 ستون مساوی + ستون تصویر */
.mega-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr 2.2fr;
  gap:0 28px;
}

/* COL TITLE */
.mega-col-title{
  font-size:14px;font-weight:700;color:var(--teal);
  margin-bottom:14px;padding-bottom:10px;
  border-bottom:2px solid #eef3f4;position:relative;
}
.mega-col-title::after{
  content:'';position:absolute;
  bottom:-2px;right:0;width:36px;height:2px;
  background:var(--teal-light);border-radius:2px;
}

/* LINKS */
.mega-links-list{list-style:none}
.mega-links-list li a{
  display:flex;align-items:center;gap:8px;
  padding:7px 4px;font-size:13.5px;color:#444;
  text-decoration:none;border-radius:6px;transition:.15s;
}
.mega-links-list li a::before{
  content:'';width:5px;height:5px;flex-shrink:0;
  border-right:1.8px solid var(--teal-light);
  border-bottom:1.8px solid var(--teal-light);
  transform:rotate(135deg);transition:.15s;
}
.mega-links-list li a:hover{color:var(--teal);background:#f3fafb;padding-right:4px;padding-left:10px}
.mega-links-list li a:hover::before{border-color:var(--teal)}

/* IMAGE COL */
.mega-img-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:8px}
.mega-img-card{
  display:flex;align-items:center;justify-content:center;
  border-radius:10px;overflow:hidden;
  background:#f0f6f7;text-decoration:none;position:relative;
  aspect-ratio:1.3/1;transition:.22s;border:1.5px solid transparent;
}
.mega-img-card:hover{border-color:#c8e0e4;transform:translateY(-2px);box-shadow:0 8px 24px rgba(15,79,89,.14)}
.mega-img-card img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s}
.mega-img-card:hover img{transform:scale(1.05)}
.mega-img-label{
  position:absolute;bottom:0;right:0;left:0;
  padding:5px 6px;
  background:linear-gradient(0deg,rgba(15,79,89,.82) 0%,transparent 100%);
  color:#fff;font-size:11px;font-weight:600;text-align:center;
}
.mega-img-card-wide{
  display:block;margin-top:8px;
  border-radius:10px;overflow:hidden;
  background:#f0f6f7;text-decoration:none;position:relative;
  aspect-ratio:3/1;transition:.22s;border:1.5px solid transparent;
}
.mega-img-card-wide:hover{border-color:#c8e0e4;transform:translateY(-2px);box-shadow:0 8px 24px rgba(15,79,89,.14)}
.mega-img-card-wide img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s}
.mega-img-card-wide:hover img{transform:scale(1.04)}
.img-ph{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:11px;color:#fff;font-weight:600;text-align:center;line-height:1.4}

.page-hint{text-align:center;padding:60px 20px;color:#aaa;font-size:14px}
.page-hint strong{display:block;color:var(--teal);font-size:16px;margin-bottom:8px}

/* STORE CARD */
.store-card{
  background:var(--gray-50);
  border:1.5px solid var(--gray-100);
  border-radius:14px;
  overflow:hidden;
}
.store-map-placeholder{
  background:linear-gradient(135deg,#0f4f59,#0e6878);
  height:90px;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  gap:6px;color:#fff;font-size:13px;font-weight:600;
}
.store-map-placeholder svg{stroke:#fff;opacity:.9}
.store-info{padding:12px 14px;display:flex;flex-direction:column;gap:8px}
.store-info-row{
  display:flex;align-items:flex-start;gap:8px;
  font-size:12.5px;color:#555;line-height:1.6;
}
.store-info-row svg{flex-shrink:0;margin-top:2px;stroke:var(--teal)}
.store-map-btn{
  display:flex;align-items:center;justify-content:center;gap:6px;
  margin:0 14px 14px;padding:9px;
  background:var(--teal);color:#fff;
  border-radius:8px;font-size:13px;font-weight:600;
  text-decoration:none;transition:.18s;
}
.store-map-btn:hover{background:#0d3d47}

/* 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}
}

.header-search .dgwt-wcas-search-wrapp{
  width:100%!important;
}
.header-search .dgwt-wcas-search-wrapp form,
.header-search .dgwt-wcas-sf-wrapp{
  display:flex!important;
  align-items:center!important;
  border:1.5px solid #dde4e6!important;
  border-radius:999px!important;
  background:#f8fafb!important;
  overflow:hidden!important;
  transition:.2s!important;
  height:46px!important;
}
.header-search .dgwt-wcas-sf-wrapp:focus-within,
.header-search .dgwt-wcas-search-wrapp form:focus-within{
  border-color:#0f4f59!important;
  background:#fff!important;
  box-shadow:0 0 0 3px rgba(15,79,89,.08)!important;
}
.header-search .dgwt-wcas-search-input,
.header-search input[type="search"],
.header-search input[type="text"]{
  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;
  border-radius:0!important;
  min-width:0!important;
  width:100%!important;
}
.header-search .dgwt-wcas-ico-magnifier-handler,
.header-search .dgwt-wcas-search-submit,
.header-search button[type="submit"]{
  width:46px!important;
  height:46px!important;
  border:none!important;
  background:transparent!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  cursor:pointer!important;
  color:#0f4f59!important;
  flex-shrink:0!important;
  padding:0!important;
}
.header-search .dgwt-wcas-ico-magnifier,
.header-search .dgwt-wcas-ico-magnifier-handler svg{
  width:20px!important;
  height:20px!important;
  fill:none!important;
  stroke:#0f4f59!important;
  stroke-width:1.8!important;
}
/* مخفی کردن آیکون اضافی */
.header-search .khabco-search-icon{display:none!important}
/* اتوکامپلیت */
.dgwt-wcas-suggestions-wrapp{
  border-radius:12px!important;
  box-shadow:0 8px 30px rgba(0,0,0,.12)!important;
  border:1px solid #e5e7eb!important;
  margin-top:4px!important;
}


/* ================================================
   FIBOSEARCH — DESKTOP HEADER
   کلاس‌های واقعی پلاگین dgwt-wcas
================================================ */
.header-search{
  flex:1;
  max-width:540px;
  position:relative;
}

/* container اصلی FiboSearch */
.header-search .dgwt-wcas-search-wrapp{
  width:100%!important;
  position:relative!important;
}

/* فرم داخلی */
.header-search .dgwt-wcas-sf-wrapp{
  display:flex!important;
  align-items:center!important;
  height:46px!important;
  border:1.5px solid #dde4e6!important;
  border-radius:999px!important;
  background:#f7fafa!important;
  overflow:visible!important;
  transition:border-color .2s, box-shadow .2s!important;
  padding:0!important;
  gap:0!important;
}
.header-search .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;
}

/* input جستجو */
.header-search .dgwt-wcas-search-input{
  flex:1!important;
  height:44px!important;
  border:none!important;
  background:transparent!important;
  padding:0 16px 0 4px!important;
  font-family:var(--font)!important;
  font-size:14px!important;
  color:#1a2e32!important;
  direction:rtl!important;
  outline:none!important;
  box-shadow:none!important;
  border-radius:0!important;
  min-width:0!important;
  width:100%!important;
  -webkit-appearance:none!important;
}
.header-search .dgwt-wcas-search-input::placeholder{
  color:#9cb3b8!important;
  font-family:var(--font)!important;
}

/* دکمه ذره‌بین */
.header-search .dgwt-wcas-ico-magnifier-handler{
  width:46px!important;
  height:44px!important;
  min-width:46px!important;
  border:none!important;
  background:transparent!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  cursor:pointer!important;
  color:#0f4f59!important;
  flex-shrink:0!important;
  padding:0!important;
  border-radius:0 999px 999px 0!important;
  transition:background .2s!important;
}
.header-search .dgwt-wcas-ico-magnifier-handler:hover{
  background:rgba(15,79,89,.06)!important;
}
.header-search .dgwt-wcas-ico-magnifier-handler svg,
.header-search .dgwt-wcas-ico-magnifier{
  width:20px!important;
  height:20px!important;
  fill:none!important;
  stroke:#0f4f59!important;
  stroke-width:1.8!important;
  stroke-linecap:round!important;
}

/* دکمه X (پاک کردن) */
.header-search .dgwt-wcas-ico-clear{
  width:36px!important;
  height:44px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  cursor:pointer!important;
  color:#9cb3b8!important;
  flex-shrink:0!important;
  border:none!important;
  background:transparent!important;
  padding:0!important;
}
.header-search .dgwt-wcas-ico-clear svg{
  width:14px!important;
  height:14px!important;
  fill:none!important;
  stroke:currentColor!important;
  stroke-width:2!important;
}

/* اتوکامپلیت dropdown */
.header-search .dgwt-wcas-suggestions-wrapp{
  position:absolute!important;
  top:calc(100% + 6px)!important;
  right:0!important;
  left:0!important;
  border-radius:14px!important;
  box-shadow:0 8px 32px rgba(0,0,0,.12)!important;
  border:1px solid #e5e7eb!important;
  background:#fff!important;
  z-index:9999!important;
  overflow:hidden!important;
}
.header-search .dgwt-wcas-suggestion{
  padding:10px 16px!important;
  direction:rtl!important;
  font-family:var(--font)!important;
  font-size:13.5px!important;
}
.header-search .dgwt-wcas-suggestion:hover,
.header-search .dgwt-wcas-suggestion.selected{
  background:#f0f7f8!important;
}

/* مخفی کردن آیکون اضافی */
.header-search .khabco-search-icon{display:none!important}

/* ========== MEGA MENU — placeholder cards ========== */
.mega-img-card-pillow-1{background:linear-gradient(135deg,#4a5568,#718096)}
.mega-img-card-pillow-2{background:linear-gradient(135deg,#2d3748,#4a5568)}
.mega-img-card-pillow-3{background:linear-gradient(135deg,#374151,#6b7280)}
.mega-img-card-bed-1{background:linear-gradient(135deg,#5c4a32,#8b6f47)}
.mega-img-card-bed-2{background:linear-gradient(135deg,#3d4852,#596673)}
.mega-img-card-bed-3{background:linear-gradient(135deg,#2d4a3e,#3d6b5a)}
.mega-img-card-wide-bed{background:linear-gradient(135deg,#0f4f59,#05BFDB)}
.mega-img-card-sheet-1{background:linear-gradient(135deg,#7c3d8a,#a855b5)}
.mega-img-card-sheet-2{background:linear-gradient(135deg,#1e4d6b,#2d7aad)}
.mega-img-card-sheet-3{background:linear-gradient(135deg,#5c3317,#8b4f25)}
.mega-img-card-wide-sheet{background:linear-gradient(135deg,#0f4f59,#05BFDB)}

/* img-ph full size */
.img-ph-full{width:100%;height:100%}

/* mega-grid با ستون‌های سفارشی */
.mega-grid-3{grid-template-columns:1fr 1fr 1fr;gap:0 40px}
.mega-grid-about{grid-template-columns:1fr 1fr 1.6fr;gap:0 40px}

/* فاصله بالای عنوان ستون دوم در مگامنو درباره */
.mega-col-title-mt{margin-top:20px}

/* ========== FOOTER — phone list ========== */
.footer-phones{display:flex;flex-direction:column;gap:4px}
.footer-phone-link{color:var(--text-soft);text-decoration:none;direction:ltr;display:block}

/* برچسب درگاه پرداخت */
.payment-label{font-size:11px;color:var(--text-dim);margin-left:6px}
