/* Aurora shop category pill navigation */
.ga-shop-category-nav {
	width: 100%;
	padding-top: 40px;
	padding-bottom: 40px;
	overflow: visible;
	position: relative;
	z-index: 2;
}

.ga-shop-category-grid {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
	overflow: visible;
	padding: 0 16px;
}

.ga-shop-category-grid__row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 24px 36px;
	width: 100%;
	overflow: visible;
}

.ga-category-pill {
	min-width: 210px;
	min-height: 86px;
	padding: 18px 34px;
	border: 2px solid rgba(135, 180, 220, 0.45);
	border-radius: 999px;
	background: #070c18;
	color: #08d9ff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: var(--font-d, "Bebas Neue", sans-serif);
	font-size: clamp(1.05rem, 2.4vw, 1.35rem);
	font-weight: 700;
	line-height: 1.15;
	text-decoration: none !important;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	box-shadow: none !important;
	text-shadow: none !important;
	filter: none !important;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	overflow: visible;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ga-category-pill--multiline {
	max-width: 220px;
	padding-left: 24px;
	padding-right: 24px;
}

.ga-category-pill:hover,
.ga-category-pill:focus-visible,
.ga-category-pill--active {
	border-color: #00d9ff;
	background: #071b24;
	color: #ffffff;
	box-shadow: none !important;
	text-shadow: none !important;
	filter: none !important;
	outline: none;
}

body.aurora-storefront.woocommerce-shop .PageHero_hero__qlWDQ + .ga-shop-category-nav,
body.aurora-storefront.tax-product_cat .PageHero_hero__qlWDQ + .ga-shop-category-nav,
body.aurora-storefront.post-type-archive-product .PageHero_hero__qlWDQ + .ga-shop-category-nav {
	overflow: visible;
}

@media (max-width: 767px) {
	.ga-shop-category-nav {
		padding-top: 28px;
		padding-bottom: 32px;
	}

	.ga-shop-category-grid {
		gap: 14px;
		padding: 0 16px;
	}

	.ga-shop-category-grid__row {
		gap: 14px;
	}

	.ga-category-pill {
		min-width: calc(50% - 10px);
		flex: 1 1 calc(50% - 10px);
		min-height: 58px;
		padding: 12px 16px;
		font-size: 16px;
		max-width: none;
	}

	.ga-category-pill--multiline {
		max-width: none;
	}
}
