.category-menu { position: relative; }
.category-menu-panel { position: absolute; z-index: 60; top: calc(100% + 10px); left: 0; display: none; width: min(390px, calc(100vw - 24px)); max-height: min(70vh, 620px); overflow-y: auto; padding: 8px; border: 1px solid var(--line); border-radius: 14px; background: var(--card); box-shadow: 0 20px 45px #14271d35; }
.category-menu.open .category-menu-panel { display: grid; animation: menuIn .18s ease both; }
.category-menu.open .catalog-burger span:first-child { transform: translateY(7px) rotate(45deg); }
.category-menu.open .catalog-burger span:nth-child(2) { opacity: 0; }
.category-menu.open .catalog-burger span:last-child { transform: translateY(-7px) rotate(-45deg); }
.category-menu-title { padding: 10px 12px 8px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.category-menu-panel a { display: flex; justify-content: space-between; gap: 16px; padding: 10px 12px; border-radius: 9px; text-decoration: none; line-height: 1.3; }
.category-menu-panel a:hover { background: #ece8de; }
.category-menu-panel .category-all-link { margin-bottom: 5px; background: var(--green); color: #fff; font-weight: 800; }
.category-menu-panel .category-all-link:hover { background: #1d3e2f; }
.category-all-link strong { font-size: 18px; }
.category-menu-panel small { flex: 0 0 auto; color: var(--muted); }
.category-reset { padding: 5px 9px; border: 1px solid #c9c4b8; border-radius: 999px; background: #fff; color: var(--green) !important; font-size: 13px; font-weight: 700; text-decoration: none; }
.category-reset:hover { border-color: var(--green); }
@media (max-width: 560px) { .category-menu-panel { position: fixed; top: 68px; left: 12px; max-height: calc(100vh - 82px); } }
