/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 21 2025 | 11:54:16 */
/* Container must be the positioning context */
.elementor-element:has(#catButton) { position: relative; }

/* Dropdown panel */
#wc-cat-dropdown.wc-cat-dropdown {
  position: absolute;
  top: calc(100% + 30px); /* sits just under the button */
  right: 55px;
  min-width: 280px;
  max-height: 70vh;
  overflow: auto;
  background: #FFF;
  border: 1px solid #E9EAEB;
  box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
  border-radius: 8px;
  padding: 8px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}

/* Open state */
#wc-cat-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* List + items */
#wc-cat-dropdown .wc-cat-list {
  list-style: none;
  margin: 0;
  padding: 4px;
}
#wc-cat-dropdown .wc-cat-item + .wc-cat-item { margin-top: 2px; }

#wc-cat-dropdown .wc-cat-link {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
}
#wc-cat-dropdown .wc-cat-link:hover,
#wc-cat-dropdown .wc-cat-link:focus {
  background: rgba(0,0,0,0.04);
  outline: none;
}

#wc-cat-dropdown .wc-cat-icon {
  width: 20px; height: 20px; border-radius: 6px; object-fit: cover;
}
#wc-cat-dropdown .wc-cat-icon--placeholder {
  display: inline-block;
  width: 28px; height: 28px; border-radius: 6px;
}

#wc-cat-dropdown .wc-cat-name {
	color: #181D27;
font-family: 'iranyekan';
font-size:  16px;
font-style: normal;
font-weight: 500;
line-height: 28px; /* 175% */
}

/* Indent children nicely */
#wc-cat-dropdown .wc-cat-list .wc-cat-list {
  margin-left: 12px;
  border-left: 2px solid rgba(0,0,0,0.6);
  padding-left: 8px;
}
 

