/* DEFAULT / SITE — müşteri paneli (dashboard, hizmetler, faturalar) */

.aho-customer-page { padding-block: var(--aho-space-8) var(--aho-space-16); }

.aho-customer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--aho-space-3);
    margin-bottom: var(--aho-space-6);
}
.aho-customer-header h1 {
    font-size: var(--aho-text-2xl);
    margin-bottom: var(--aho-space-1);
}
.aho-customer-header__welcome {
    color: var(--aho-color-ink-500);
}

.aho-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--aho-space-4);
    margin-bottom: var(--aho-space-6);
}
.aho-stat-card { padding: var(--aho-space-5); }
.aho-stat-card__label {
    font-size: var(--aho-text-xs);
    color: var(--aho-color-ink-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--aho-space-2);
}
.aho-stat-card__value {
    font-size: var(--aho-text-3xl);
    font-weight: 700;
    color: var(--aho-color-ink-900);
    line-height: 1.1;
    margin-bottom: var(--aho-space-1);
}
.aho-stat-card__meta {
    font-size: var(--aho-text-xs);
    color: var(--aho-color-ink-500);
}
