
/* ===== ניווט עליון לכל קטגוריות האתר ===== */
.site-category-nav{
  display:flex !important;
  align-items:center !important;
  gap:22px !important;
  flex-wrap:nowrap !important;
  white-space:nowrap !important;
}

.site-category-nav a{
  position:relative;
  color:#ead8b8 !important;
  text-decoration:none !important;
  font-weight:500 !important;
  transition:color .18s ease, opacity .18s ease !important;
}

.site-category-nav a::after{
  content:"";
  position:absolute;
  right:0;
  left:0;
  bottom:-5px;
  height:1px;
  background:#d3a95f;
  transform:scaleX(0);
  transition:transform .18s ease;
}

.site-category-nav a:hover{
  color:#f1cc86 !important;
}

.site-category-nav a:hover::after{
  transform:scaleX(1);
}

/* במחשב רגיל */
@media(min-width:1001px){
  .site-category-nav{
    gap:clamp(18px,2vw,34px) !important;
  }
  .site-category-nav a{
    font-size:clamp(13px,1.05vw,17px) !important;
  }
}

/* טלפון במצב "גרסת מחשב" */
@media(pointer:coarse) and (min-width:701px) and (max-width:1300px){
  .site-category-nav{
    gap:13px !important;
  }
  .site-category-nav a{
    font-size:9px !important;
  }
}

/* מובייל רגיל: שורה אופקית שאפשר להחליק ימינה/שמאלה */
@media(max-width:700px){
  .topbar,
  .top-bar{
    overflow:visible !important;
  }

  .site-category-nav{
    width:100% !important;
    max-width:100% !important;
    gap:18px !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    scrollbar-width:none !important;
    -webkit-overflow-scrolling:touch !important;
    padding:7px 2px 9px !important;
  }

  .site-category-nav::-webkit-scrollbar{
    display:none !important;
  }

  .site-category-nav a{
    flex:0 0 auto !important;
    font-size:13px !important;
  }
}
