.customer-account {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
.customer-account__header {
text-align: center;
margin-bottom: 3rem;
}
.customer-account__title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
color: var(--color-text-primary);
}
.customer-account__welcome {
font-size: 1.125rem;
color: var(--color-text-secondary);
}
.customer-account__orders {
background: white;
padding: 2rem;
border-radius: 0.5rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.customer-account__orders h2 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1.5rem;
color: var(--color-text-primary);
}
.customer-account__order {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
border-bottom: 1px solid var(--color-border);
}
.customer-account__order:last-child {
border-bottom: none;
}
.customer-account__order-info h3 {
font-size: 1rem;
font-weight: 600;
margin-bottom: 0.25rem;
color: var(--color-text-primary);
}
.customer-account__order-info p {
font-size: 0.875rem;
color: var(--color-text-secondary);
margin-bottom: 0.25rem;
}