/* EconomiBuy — shared category dropdown. Single owner for Store, Home and Catalog. */
.rc433-store-category-action{
  position:relative;
  flex:0 1 auto;
}
.rc433-store-menu-panel{
  position:absolute;
  top:100%;
  right:auto;
  bottom:auto;
  left:0;
  z-index:60;
  display:grid;
  grid-template-columns:1fr;
  gap:4px;
  width:min(390px,calc(100vw - 32px));
  max-height:60vh;
  margin-top:4px;
  padding:9px;
  overflow:auto;
  border:1px solid rgba(47,105,217,.26);
  border-radius:16px;
  background:#fff;
  box-shadow:0 18px 46px rgba(7,19,72,.18);
}
.rc433-store-menu-panel[hidden]{display:none}
.rc433-store-menu-panel button{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  width:100%;
  min-width:0;
  padding:9px 10px;
  border:0;
  border-radius:10px;
  background:transparent;
  color:#071348;
  font:inherit;
  font-size:.76rem;
  font-weight:750;
  text-align:left;
  cursor:pointer;
}
.rc433-store-menu-panel button:hover,
.rc433-store-menu-panel button:focus-visible,
.rc433-store-menu-panel button.is-active{
  background:#e8f0ff;
  color:#174da9;
}
.rc433-store-menu-panel small{
  display:grid;
  flex:0 0 25px;
  place-items:center;
  min-width:25px;
  height:25px;
  border-radius:999px;
  background:#edf6e7;
  color:#447f00;
  font-size:.62rem;
  font-weight:900;
}
.eb-category-filter-controls{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.eb-category-filter-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:42px;
  padding:10px 15px;
  border:1px solid #071348;
  border-radius:12px;
  background:#071348;
  color:#fff;
  font:inherit;
  font-size:14px;
  font-weight:850;
  line-height:1.15;
  text-decoration:none;
  cursor:pointer;
}
.eb-category-filter-action:hover,
.eb-category-filter-action:focus-visible,
.eb-category-filter-action[aria-expanded="true"]{
  background:#132461;
  color:#fff;
}
.eb-category-filter-reset[aria-pressed="true"]{
  box-shadow:inset 0 0 0 2px rgba(255,255,255,.34);
}
@media(max-width:760px){
  .rc433-store-category-action .rc433-store-menu-panel{
    right:0;
    left:0;
    width:100%;
    max-height:60vh;
    overflow-x:hidden;
    overflow-y:auto;
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
  }
  .eb-category-filter-controls{
    width:100%;
  }
}
