/**
 * NC Mi Cuenta v1.2.0 - Estilos frontend de la página Mi Cuenta.
 * https://ninjaclan.com.ar
 */

/* ── Layout general ─────────────────────────────────────────── */

.woocommerce-account .woocommerce {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	background: #fff;
	border-radius: 10px;
}

/* ── Navegación lateral ─────────────────────────────────────── */

.woocommerce-account .woocommerce-MyAccount-navigation.ncmc-nav {
	width: 30%;
	float: none;
	padding: 10px 0;
}

.ncmc-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ncmc-nav ul li {
	margin: 0;
	border-bottom: 1px solid #eef0f3;
	list-style: none;
}

.ncmc-nav ul li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	color: var(--ncmc-primary, #137886);
	text-decoration: none;
	font-weight: 500;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.ncmc-nav ul li a:hover {
	background: #f5f6f8;
}

.ncmc-nav ul li a .dashicons {
	font-size: 18px;
	width: 18px;
	height: 18px;
	line-height: 1;
	flex: 0 0 auto;
}

.ncmc-nav ul li.is-active a {
	background: var(--ncmc-active, #f0544f);
	color: #fff;
}

/* ── Contenido ──────────────────────────────────────────────── */

.woocommerce-account .woocommerce-MyAccount-content {
	width: 70%;
	float: none;
	padding: 26px 30px;
	background: #fafafa;
	border-radius: 0 10px 10px 0;
}

/* ── Badge de pedidos ───────────────────────────────────────── */

.ncmc-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 7px;
	border-radius: 12px;
	background: var(--ncmc-badge, #22a852);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

/* ── Tarjetas del escritorio ────────────────────────────────── */

.ncmc-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 20px;
	margin-top: 26px;
}

.ncmc-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 150px;
	padding: 24px 16px;
	background: var(--ncmc-card-bg, #efedf3);
	border: 1px solid #dcd9e2;
	border-radius: 10px;
	text-decoration: none;
	text-align: center;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.ncmc-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.ncmc-card-icon-wrap {
	position: relative;
	display: inline-block;
}

.ncmc-card-icon-wrap .dashicons {
	font-size: 44px;
	width: 44px;
	height: 44px;
	color: var(--ncmc-icon, #34495e);
}

.ncmc-card-icon-wrap .ncmc-badge {
	position: absolute;
	top: -10px;
	right: -16px;
}

.ncmc-card-label {
	color: var(--ncmc-icon, #34495e);
	font-weight: 700;
	font-size: 14px;
	text-transform: none;
}

/* ── Contenido de endpoints personalizados ──────────────────── */

.ncmc-endpoint-content {
	line-height: 1.65;
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 768px) {

	.woocommerce-account .woocommerce-MyAccount-navigation.ncmc-nav,
	.woocommerce-account .woocommerce-MyAccount-content {
		width: 100%;
		border-radius: 0 0 10px 10px;
	}

	.ncmc-cards {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
		gap: 14px;
	}
}
