/* My Account Dashboard - Custom 3 Stats Cards */
:root {
	--ma-card-bg: #ffffff;
	--ma-border: #ececec;
	--ma-text: #1f2937;
	--ma-muted: #7a7a7a;
	--ma-orange: var(--c-primary);
	--ma-blue: #0b6fdc;
	--ma-green: #10b14a;
	--ma-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

/* Main account container */

/* Header */
.woocommerce-account .account-dashboard .dashboard-header {
	padding-bottom: 20px;
	border-bottom: 1px solid #f2f2f2;
	margin-bottom: 20px;
}

.woocommerce-account .account-dashboard .welcome-box {
	display: flex;
	align-items: center;
	gap: 14px;
}

.woocommerce-account .account-dashboard .avatar-img {
	border-radius: 10px;
	border: 3px solid var(--c-primary);
}

.woocommerce-account .account-dashboard .welcome-content h2 {
    margin: 0 0 4px;
    font-size: 1.5rem;
    line-height: 1.06;
    font-weight: 600;
    text-transform: lowercase;
}

.woocommerce-account .account-dashboard .welcome-content p {
	margin: 0;
	font-size: 15px;
	color: #7a8698;
}
.account-dashboard  .dashboard-links li {
    width: 50%;
}
.dashboard-links a{
	    font-size: 14px;
}
.account-dashboard .dashboard-links a:hover {
    background-color: var(--c-primary);
    color: #fff !important;
}
.woocommerce-account .account-dashboard .welcome-content p a {
	color: #111827;
	font-weight: 700;
	text-decoration: none;
}

/* Stats grid */
.woocommerce-account .account-dashboard .dashboard-stats {
	display: none;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 24px;
}

.woocommerce-account .account-dashboard .stat-card {
	background: var(--ma-card-bg);
	border: 1px solid var(--ma-border);
	border-radius: 10px;
	padding: 20px 18px;
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 116px;
	transition: all 0.22s ease;
}

.woocommerce-account .account-dashboard .stat-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
	border-color: #e8e8e8;
}

.woocommerce-account .account-dashboard .stat-icon {
	width: 62px;
	height: 56px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex: 0 0 62px;
	box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.06);
}

.woocommerce-account .account-dashboard .stat-icon svg {
	width: 28px;
	height: 28px;
	display: block;
}

/* Color blocks by card */
.woocommerce-account .account-dashboard .stat-card-orders .stat-icon {
	background: var(--c-primary);
}

.woocommerce-account .account-dashboard .stat-card-account .stat-icon {
	background: var(--ma-blue);
}

.woocommerce-account .account-dashboard .stat-card-address .stat-icon {
	background: var(--ma-green);
}

.woocommerce-account .account-dashboard .stat-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.woocommerce-account .account-dashboard .stat-label {
	margin: 0;
	font-size: 12px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--c-body);
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.woocommerce-account .account-dashboard .stat-value {
	margin: 2px 0 0;
	font-size: 46px;
	font-weight: 800;
	line-height: 1;
	color: var(--c-primary);
}

.woocommerce-account .account-dashboard .stat-link {
	display: inline-block;
    font-size: 13px;
    line-height: 1.06;
    font-weight: 600;
	color: var(--c-primary);
	text-decoration: none;
}

.woocommerce-account .account-dashboard .stat-link:hover {
	opacity: 0.88;
}

/* Description box */
.woocommerce-account .account-dashboard .dashboard-description {
	margin: 10px 0 24px;
	border: 1px solid #efefef;
	border-left: 5px solid var(--c-primary);
	border-radius: 10px;
	background: #fff;
	padding: 22px 20px;
}

.woocommerce-account .account-dashboard .dashboard-description p {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #748093;
}

.woocommerce-account .account-dashboard .dashboard-description p a {
	color: #111827;
	font-weight: 700;
	text-decoration: none;
}

/* Bottom quick links layout cleanup if present */
.woocommerce-account .account-dashboard .woocommerce-MyAccount-content > p:last-of-type {
	margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1200px) {
	
}

@media (max-width: 991px) {

}

@media (max-width: 767px) {

}
