/* Horizontal filter pills - Monday Swimwear style */

.wd-filter-pills {
	position: relative;
	margin-bottom: 20px;
}

.wd-filter-pills__bar {
	width: 100%;
	overflow: hidden;
}

.wd-filter-pills__scroll {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 4px;
}

.wd-filter-pills__scroll::-webkit-scrollbar {
	display: none;
}

.wd-filter-pills__btn {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	padding: 8px 16px;
	border: 1px solid var(--wd-brd-color, #e0e0e0);
	background: #fff;
	color: inherit;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	border-radius: 24px;
	transition: border-color 0.2s, background-color 0.2s, color 0.2s;
	white-space: nowrap;
}

.wd-filter-pills__btn:hover {
	border-color: var(--wd-primary-color, #333);
	background: rgba(0, 0, 0, 0.03);
}

.wd-filter-pills__btn--active {
	border-color: var(--wd-primary-color, #333);
	background: var(--wd-primary-color, #333);
	color: #fff;
}

/* Overlay */
.wd-filter-pills__overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s, visibility 0.25s;
	z-index: 9998;
}

.wd-filter-pills__overlay.wd-filter-pills__overlay--visible {
	opacity: 1;
	visibility: visible;
}

/* Drawers */
.wd-filter-pills__drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 380px;
	background: #fff;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	z-index: 9999;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

body.rtl .wd-filter-pills__drawer {
	right: auto;
	left: 0;
	transform: translateX(-100%);
}

.wd-filter-pills__drawer[aria-hidden="false"] {
	transform: translateX(0);
}

body.rtl .wd-filter-pills__drawer[aria-hidden="false"] {
	transform: translateX(0);
}

body.wd-filter-drawer-open {
	overflow: hidden;
}

.wd-filter-pills__drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-bottom: 1px solid var(--wd-brd-color, #e0e0e0);
	flex-shrink: 0;
}

.wd-filter-pills__drawer-title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
}

.wd-filter-pills__drawer-close {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: transparent;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: inherit;
	opacity: 0.7;
	transition: opacity 0.2s;
}

.wd-filter-pills__drawer-close:hover {
	opacity: 1;
}

.wd-filter-pills__drawer-body {
	flex: 1;
	overflow-y: auto;
	padding: 20px;
}

.wd-filter-pills__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wd-filter-pills__list-item {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.wd-filter-pills__list-item:last-child {
	border-bottom: none;
}

.wd-filter-pills__list-item a {
	display: block;
	padding: 12px 0;
	color: inherit;
	text-decoration: none;
	transition: color 0.2s, padding-left 0.2s;
}

.wd-filter-pills__list-item a:hover {
	color: var(--wd-primary-color, #333);
}

.wd-filter-pills__list-item--active a {
	font-weight: 600;
	color: var(--wd-primary-color, #333);
}

.wd-filter-pills__count {
	opacity: 0.7;
	font-weight: 400;
	font-size: 0.9em;
}

.wd-filter-pills__empty {
	margin: 0;
	color: #666;
}
