/* Filter Trigger Container */
.angie-filter-trigger-container-851ef665 {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
}

.angie-filter-trigger-btn-851ef665 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #556B2F; /* Eco green */
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: inherit;
}

.angie-filter-trigger-btn-851ef665:hover {
  background-color: #3e4f1b;
}

.angie-filter-icon-851ef665 {
  width: 16px;
  height: 16px;
}

/* Drawer Overlay */
.angie-drawer-overlay-851ef665 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.angie-drawer-overlay-851ef665.is-active {
  opacity: 1;
  visibility: visible;
}

/* Slide-out Drawer */
.angie-filter-drawer-851ef665 {
  position: fixed;
  top: 0;
  right: -350px;
  width: 320px;
  height: 100%;
  background-color: #ffffff;
  z-index: 99999;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-sizing: border-box;
}

.angie-filter-drawer-851ef665.is-active {
  right: 0;
}

body.admin-bar .angie-filter-drawer-851ef665 {
  top: var(--wp-admin--admin-bar--height, 32px);
  height: calc(100% - var(--wp-admin--admin-bar--height, 32px));
}

@media screen and (max-width: 782px) {
  body.admin-bar .angie-filter-drawer-851ef665 {
    top: 46px;
    height: calc(100% - 46px);
  }
}

/* Header */
.angie-drawer-header-851ef665 {
  padding: 20px;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.angie-drawer-header-851ef665 h3 {
  margin: 0;
  font-size: 18px;
  color: #333333;
}

.angie-drawer-close-851ef665 {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999999;
  line-height: 1;
  padding: 0;
}

/* Body */
.angie-drawer-body-851ef665 {
  padding: 20px;
  flex-grow: 1;
  overflow-y: auto;
}

.angie-filter-group-851ef665 {
  margin-bottom: 25px;
}

.angie-filter-label-851ef665 {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: #555555;
}

/* Custom Dropdown Style */
.angie-custom-dropdown-851ef665 {
  position: relative;
}

.angie-dropdown-trigger-851ef665 {
  border: 1px solid #cccccc;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #faf9f6; /* Off-white eco style */
}

.angie-dropdown-placeholder-851ef665 {
  color: #666666;
  font-size: 14px;
}

.angie-dropdown-arrow-851ef665 {
  font-size: 10px;
  color: #888888;
  transition: transform 0.2s ease;
}

.angie-custom-dropdown-851ef665.is-open .angie-dropdown-arrow-851ef665 {
  transform: rotate(180deg);
}

.angie-dropdown-menu-851ef665 {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-top: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  z-index: 10;
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.angie-custom-dropdown-851ef665.is-open .angie-dropdown-menu-851ef665 {
  display: block;
}

.angie-dropdown-item-851ef665 {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 14px;
  color: #444444;
  margin: 0;
}

.angie-dropdown-item-851ef665:hover {
  background-color: #f5f5f5;
}

.angie-cat-checkbox-851ef665 {
  margin-right: 10px !important;
  cursor: pointer;
}

.angie-cat-count-851ef665 {
  margin-left: auto;
  color: #999999;
  font-size: 12px;
}

/* Footer */
.angie-drawer-footer-851ef665 {
  padding: 20px;
  border-top: 1px solid #eeeeee;
  display: flex;
  gap: 10px;
}

.angie-btn-clear-851ef665,
.angie-btn-apply-851ef665 {
  flex: 1;
  padding: 12px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  font-size: 14px;
}

.angie-btn-clear-851ef665 {
  background-color: #f5f5f5;
  color: #333333;
  border: 1px solid #cccccc;
}

.angie-btn-clear-851ef665:hover {
  background-color: #e5e5e5;
}

.angie-btn-apply-851ef665 {
  background-color: #556B2F;
  color: #ffffff;
  border: none;
}

.angie-btn-apply-851ef665:hover {
  background-color: #3e4f1b;
}
