/* Shop filter drawer – global, works after portal to body */
.dz-mobile-backdrop {
  position: fixed !important;
  inset: 0;
  z-index: 200000;
  background: rgba(15, 23, 42, .45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.dz-mobile-backdrop.dz-show {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.dz-filter-drawer {
  position: fixed !important;
  top: 0; left: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 200001;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 12px 0 40px rgba(15, 23, 42, .18);
  transform: translateX(-105%);
  visibility: hidden;
  pointer-events: none;
}
.dz-filter-drawer.dz-open,
.dz-filter-drawer.show {
  transform: none !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.dz-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 14px;
  border-bottom: 1px solid #e6efe9;
  background: #f6fbf8;
  flex-shrink: 0;
}
.dz-drawer-header h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #14532d;
}
.dz-drawer-close-btn {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: #e8f5ee;
  color: #14532d;
  font-size: 18px;
  line-height: 1;
}
.dz-drawer-body {
  overflow: auto;
  padding: 14px 16px 28px;
  -webkit-overflow-scrolling: touch;
}
.dz-filter-form-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dz-search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #d7e5dc;
  border-radius: 12px;
  background: #f7fbf8;
}
.dz-search-field input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
}
.dz-filter-block h6 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #15803d;
}
.dz-sort-select,
.dz-filter-block select {
  width: 100%;
  height: 42px;
  border: 1px solid #d7e5dc;
  border-radius: 12px;
  padding: 0 12px;
  background: #fff;
}
.dz-price-labels {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}
.dz-check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: 14px;
  color: #1e293b;
}
.dz-category-children {
  padding-left: 18px;
}
.dz-filter-divider {
  height: 1px;
  background: #e6efe9;
}
.dz-clear-filters {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: #14532d;
  color: #fff;
  font-weight: 700;
}
.dz-attribute-group {
  margin-bottom: 10px;
}
.dz-attribute-group strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 13px;
}

.dz-drawer-close-btn {
  position: relative;
  z-index: 5;
  pointer-events: auto !important;
  cursor: pointer;
}
.dz-filter-drawer.dz-open,
.dz-filter-drawer.show {
  pointer-events: auto !important;
}
