/**
 * Shared Pill Filter Styles
 * Reusable pill-style filter buttons for any post type
 * Based on tabbed navigation design
 */

/* ==========================================================================
   Filter Container
   ========================================================================== */

.sierra-pill-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	padding: 8px;
	background: var(--wp--preset--color--module-background);
	border-radius: 40px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   Filter Buttons (Pill Style)
   ========================================================================== */

.sierra-pill-filter-btn {
	padding: 12px 24px;
	background: transparent;
	border: none;
	border-radius: 40px;
	font-family: var(--wp--preset--font-family--gt-standard);
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	color: var(--wp--preset--color--deep-alpine);
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	display: inline-block;
}

/* Hover State */
.sierra-pill-filter-btn:hover {
	background: var(--wp--preset--color--sugar-pine-green-10);
	color: var(--wp--preset--color--sugar-pine-green);
}

/* Active/Selected State */
.sierra-pill-filter-btn.active {
	background: var(--wp--preset--color--deep-alpine);
	color: var(--wp--preset--color--snowcap-sage);
	font-weight: 600;
}

/* Focus State for Accessibility */
.sierra-pill-filter-btn:focus {
	outline: 2px solid var(--wp--preset--color--sierra-gold);
	outline-offset: 2px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
	.sierra-pill-filters {
		padding: 8px 4px;
		gap: 4px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none; /* Firefox */
	}

	.sierra-pill-filters::-webkit-scrollbar {
		display: none; /* Chrome, Safari, Edge */
	}

	.sierra-pill-filter-btn {
		flex: 0 0 auto;
		min-width: fit-content;
		padding: 10px 20px;
		font-size: 16px;
		white-space: nowrap;
	}
}

/* ==========================================================================
   Alternative: Left-aligned filters
   ========================================================================== */

.sierra-pill-filters.align-left {
	justify-content: flex-start;
}

/* ==========================================================================
   Alternative: Right-aligned filters
   ========================================================================== */

.sierra-pill-filters.align-right {
	justify-content: flex-end;
}
