.pc-wrap { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; overflow: hidden; max-width: 480px; }
.pc-header { padding: 20px 24px 0; }
.pc-title { font-size: 22px; color: #111; margin-bottom: 16px; }
.pc-search-wrap { position: relative; }
.pc-search-wrap svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; stroke: #999; }
#pc-search { width: 100%; padding: 10px 12px 10px 38px; border: 1px solid #e0e0e0; border-radius: 8px; font-size: 14px; color: #111; background: #fafafa; outline: none; transition: border-color .2s, background .2s; }
#pc-search:focus { border-color: #111; background: #fff; }
#pc-search::placeholder { color: #bbb; }
.pc-divider { height: 1px; background: #f0f0f0; margin: 16px 0 0; }
.pc-list { list-style: none; padding: 8px 0; }
.pc-item { display: block; border-left: 3px solid transparent; transition: background .15s; }
.pc-item:hover { background: #f7f7f7; border-left-color: #111; }
.pc-item.pc-hidden { display: none; }
.pc-item:not(:last-child) { margin-bottom: 3px; }
.pc-left { display: flex; align-items: center; gap: 10px; padding: 6px 22px; text-decoration: none; width: 100%; }
.pc-dot { width: 7px; height: 7px; border-radius: 50%; background: #ddd; flex-shrink: 0; transition: background .2s; }
.pc-item:hover .pc-dot { background: #111; }
.pc-name { font-size: 14px; color: #333; transition: color .2s; }
.pc-item:hover .pc-name { color: #111; font-weight: 500; }
.pc-count {
    margin-left: auto;
    font-size: 12px;
    font-weight: 500;
    color: #8d8d8d;
    background: #f4f4f4;
    padding: 0px 5px;
    border-radius: 20px;
    transition: background .2s, color .2s;
    min-width: 25px;
    min-height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pc-item:hover .pc-count { background: #111; color: #fff; }
.pc-empty { padding: 24px; text-align: center; font-size: 13px; color: #bbb; }
.pc-footer { padding: 12px 24px; border-top: 1px solid #f0f0f0; }
.pc-total { font-size: 12px; color: #bbb; }
.pc-highlight { background: #111; color: #fff; border-radius: 3px; padding: 0 2px; }
.pc-item.pc-active { background: #f7f7f7; border-left-color: #111; }
.pc-item.pc-active .pc-dot { background: #111; }
.pc-item.pc-active .pc-name { color: #111; font-weight: 500; }
.pc-item.pc-active .pc-count { background: #111; color: #fff; }

/* ── Mobile toggle button ── */
.pc-toggle-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.pc-toggle-btn svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: opacity .2s; }
.pc-toggle-btn .icon-filter { display: block; }
.pc-toggle-btn .icon-close  { display: none; }
.pc-toggle-btn.is-open .icon-filter { display: none; }
.pc-toggle-btn.is-open .icon-close  { display: block; }

/* ── Fullscreen overlay ── */
.pc-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  flex-direction: column;
  overflow: hidden;
}
.pc-overlay.is-open { display: flex; }
.pc-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
  flex-shrink: 0;
}
.pc-overlay-header .pc-title { margin-bottom: 0; }
.pc-overlay-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50% !important;
  border: 1px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  padding: 0 !important;
}
.pc-overlay-close:hover { background: #111; border-color: #111; }
.pc-overlay-close:hover svg { stroke: #fff; }
.pc-overlay-close svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; transition: stroke .2s; }
.pc-overlay-search { padding: 16px 24px 0; flex-shrink: 0; }
.pc-overlay-search .pc-search-wrap { position: relative; }
.pc-overlay-search .pc-search-wrap svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; stroke: #999; fill: none; stroke-width: 2; stroke-linecap: round; }
.pc-overlay-search #pc-search-mobile { width: 100%; padding: 10px 12px 10px 38px; border: 1px solid #e0e0e0; border-radius: 8px; font-size: 14px; color: #111; background: #fafafa; outline: none; transition: border-color .2s, background .2s; }
.pc-overlay-search #pc-search-mobile:focus { border-color: #111; background: #fff; }
.pc-overlay-search #pc-search-mobile::placeholder { color: #bbb; }
.pc-overlay-divider { height: 1px; background: #f0f0f0; margin: 16px 0 0; flex-shrink: 0; }
.pc-overlay-body { flex: 1; overflow-y: auto; }
.pc-overlay-footer { padding: 12px 24px; border-top: 1px solid #f0f0f0; flex-shrink: 0; }
.pc-overlay-footer .pc-total { font-size: 12px; color: #bbb; }

@media (max-width: 1023px) {
  .pc-wrap { display: none !important; }
  .pc-toggle-btn { display: flex; padding: 10px !important; }
}
.post-type-post #postdivrich {
	display: none !important;
}