.pqv-cat-links{
	display:flex;
	flex-wrap:wrap;
	gap:8px;
	margin:10px 0
}
.pqv-cat-links .pqv-cat-link{
	padding:6px 10px;
	border:1px solid #eee;
	border-radius:999px;
	background:#fff;
	text-decoration:none
}
.pqv-mobile-menu-toggle{
	position:fixed;
	right:12px;
	bottom:12px;
	padding:10px 14px;
	border-radius:999px;
	border:0;
	box-shadow:0 2px 10px rgba(0,0,0,.1);
	background:#111;
	color:#fff;
	z-index:1000
}
.pqv-mobile-menu-overlay{
	position:fixed;
	inset:0;
	background:rgba(0,0,0,.45);
	display:flex;
	align-items:flex-end;
	justify-content:center;
	z-index:1001
}
.pqv-mobile-menu-popup{
	background:#fff;
	width:100%;
	max-height:70vh;
	border-radius:16px 16px 0 0;
	padding:12px
}
.pqv-menu-scroll{
	max-height:55vh;
	overflow:auto;
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:10px
}
.pqv-menu-close{
	margin-top:10px;
	padding:8px 12px;
	border:0;
	background:#eee;
	border-radius:8px
}
.pqv-cat-block{
	margin:24px 0
}
.pqv-category-name {
	margin: 0 0 10px 0;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	background: #d7e3c7;
	padding: 5px 10px;
	border-radius: 5px;
}
.pqv-cat-actions{
	display:flex;
	justify-content:center;
	margin-top:10px
}
.pqv-cat-load{
	padding:8px 14px;
	border:0;
	background:#f0f0f0;
	border-radius:8px;
	cursor:pointer
}
.pqv-loading,.pqv-error{
	padding:12px;
	border-radius:10px;
	background:#f7f7f7
}
@media (max-width: 768px){
	.desktop-only{
		display:none
}
}
.pqv-cat-nav{
	display:flex;
	flex-direction:column;
	gap:6px;
	margin:12px 0
}
.pqv-cat-nav a{
	padding:5px 10px;
	border:1px solid #eee;
	border-radius:8px;
	text-decoration:none !important;
	background:#fff;
	font-size: 13px;
}
/* Desktop vertical nav already exists (.pqv-cat-nav). Keep it desktop-only. */
.pqv-cat-nav{
	display:flex;
	flex-direction:column;
	gap:6px;
	margin:12px 0
}
.pqv-cat-nav a{
	padding:8px 10px;
	border:1px solid #eee;
	border-radius:8px;
	text-decoration:none;
	background:#fff
}
/* Floating Menu button for mobile */
.pqv-cat-fab {
	position: fixed;
	right: 33%;
	bottom: 80px;
	z-index: 1002;
	padding: 10px 50px;
	border: 0;
	border-radius: 999px;
	background: #111 !important;
	color: #80ae41 !important;
	font-weight: 600;
	box-shadow: 0 6px 24px rgba(0, 0, 0, .2);
	cursor: pointer;
	display: block;
}
/* Popup overlay */
.pqv-cat-overlay{
	position:fixed;
	inset:0;
	z-index:1001;
	background:rgba(0,0,0,.45);
	display:flex;
	align-items:flex-end;
	justify-content:center;
}
.pqv-cat-overlay[hidden]{
	display:none
}
.pqv-cat-panel {
	width: 95%;
	max-width: 640px;
	background: #fff;
	border-radius: 16px 16px;
	max-height: 70vh;
	transform: translateY(100%);
	transition: transform .25s ease;
	box-shadow: 0 -10px 30px rgba(0, 0, 0, .15);
	bottom: 113px;
	position: relative;
}
.pqv-cat-overlay.open .pqv-cat-panel{
	transform:translateY(0) 
}
.pqv-cat-panel-header{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:12px 16px;
	border-bottom:1px solid #eee
}
.pqv-cat-close{
	background:#f2f2f2;
	border:0;
	border-radius:8px;
	padding:6px 10px;
	cursor:pointer
}
.pqv-cat-panel-body{
	padding:10px 16px;
	max-height: 60vh;          /* or any height that fits your layout */
  overflow-y: auto;           /* vertical scrollbar when content overflows */
  overflow-x: hidden;         /* prevent horizontal scrolling */
  scrollbar-width: thin;      /* Firefox: thin scrollbar */
  scrollbar-color: #ccc #f8f8f8; /* Firefox: thumb and track colours */
}
.pqv-cat-list{
	list-style:none;
	margin:0;
	padding:0 !important;
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:10px
}
.pqv-cat-list a{
	display:block;
	padding:5px 12px;
	border:1px solid #eee;
	border-radius:10px;
	text-decoration:none !important;
	background:#fff
}

h3#pqv-cat-title {
    margin-bottom: 0px;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 700;
}



/* Hide desktop nav + show fab only on small screens */
@media (min-width: 769px){
	.pqv-cat-fab, .pqv-cat-overlay{
		display:none !important;
	}
	.desktop-only{
		display:flex !important;
	}
}
@media (max-width: 768px){
	.desktop-only{
		display:none !important;
	}
}
/* Optional: prevent body scroll when overlay open (shared with your modal class name) */
body.pqv-lock{
	overflow:hidden;
}
