/*
 * Kulisy Lata — subtle styling for the default WooCommerce "Moje konto" page.
 * Scoped entirely under body.woocommerce-account so it cannot leak onto any
 * other page. Values mirror the brand tokens declared in pdp.css's :root
 * (kl-navy/kl-border/kl-cream/kl-radius-sm/kl-sans) as literals, since this
 * stylesheet loads on its own here and pdp.css is not enqueued on this page.
 */

body.woocommerce-account .woocommerce {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	margin-top: 28px;
}

body.woocommerce-account .woocommerce-MyAccount-navigation {
	flex: 1 1 220px;
	max-width: 260px;
}

body.woocommerce-account .woocommerce-MyAccount-content {
	flex: 3 1 480px;
	min-width: 0;
	font-family: "DM Sans", Arial, sans-serif;
	color: #1b2845;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link {
	margin: 0;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link a {
	display: block;
	padding: 12px 16px;
	border: 1px solid #ded7cc;
	border-radius: 8px;
	background: #ffffff;
	color: #1b2845;
	font-family: "DM Sans", Arial, sans-serif;
	font-weight: 600;
	font-size: 15px;
	line-height: 1.3;
	text-decoration: none;
	transition: background-color .15s ease, border-color .15s ease;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link a:hover {
	background: #fbf9f5;
	border-color: #c9c0b2;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a {
	border-color: #1b2845;
	background: #1b2845;
	color: #ffffff;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a {
	color: #68645f;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a:hover {
	color: #1b2845;
}

body.woocommerce-account .woocommerce-MyAccount-content p {
	margin: 0 0 14px;
	line-height: 1.6;
}

body.woocommerce-account .woocommerce-MyAccount-content a {
	color: #1b2845;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

body.woocommerce-account .woocommerce-MyAccount-content a:hover {
	color: #c8102e;
}

@media (max-width: 640px) {
	body.woocommerce-account .woocommerce {
		flex-direction: column;
		gap: 20px;
	}

	body.woocommerce-account .woocommerce-MyAccount-navigation {
		max-width: none;
	}

	body.woocommerce-account .woocommerce-MyAccount-navigation ul {
		flex-direction: row;
		flex-wrap: wrap;
	}

	body.woocommerce-account .woocommerce-MyAccount-navigation-link {
		flex: 1 1 auto;
	}

	body.woocommerce-account .woocommerce-MyAccount-navigation-link a {
		text-align: center;
	}
}
