.woocommerce-MyAccount-navigation {
	margin-bottom: 0 !important;
	padding: 0 !important;
	overflow: visible !important;
}

/* ── Tab list ── */
.woocommerce-MyAccount-navigation ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	border-bottom: 2px solid #d1cec7 !important;
	background: transparent !important;
	font-family: 'DM Sans', sans-serif;
	overflow: visible !important;
}

/* ── Individual tab items ── */
.woocommerce-MyAccount-navigation ul li {
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	list-style: none !important;
	display: flex; /* Ensure link fills height if needed */
}

/* Separator dots between items — hidden in this design */
.woocommerce-MyAccount-navigation ul li::before,
.woocommerce-MyAccount-navigation ul li::after {
	content: none !important;
}

/* ── Tab links ── */
.woocommerce-MyAccount-navigation ul li a {
	display: block;
	padding: 12px 20px 10px;
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #888 !important;
	text-decoration: none !important;
	border-bottom: 2px solid transparent;
	transition:
		color 0.15s ease,
		border-color 0.15s ease;
	white-space: nowrap;
	background: transparent !important;
	position: relative;
	top: 2px; /* Shift link down to perfectly overlap the UL's 2px border */
}

/* ── Hover state ── */
.woocommerce-MyAccount-navigation ul li a:hover {
	color: #1a1a1a !important;
	border-bottom-color: #aaa;
	background: transparent !important;
	text-decoration: none !important;
}

/* ── Active / current tab ── */
.woocommerce-MyAccount-navigation ul li.is-active,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--active {
	border-bottom-color: #1a1a1a !important;
	border-bottom: solid;
	border-width: 2px;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--active a {
	color: #1a1a1a !important;
	font-weight: 600;
	background: transparent !important;
}

/* ── Account content area — add breathing room below the nav ── */
.woocommerce-MyAccount-content {
	padding-top: 32px !important;
}

/* ── Responsive: stack on small screens ── */
@media (max-width: 520px) {
	.woocommerce-MyAccount-navigation ul {
		gap: 0;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.woocommerce-MyAccount-navigation ul li a {
		padding: 10px 14px 8px;
		font-size: 14px;
	}
}
