.account-shell {
    max-width: 900px;
    margin: 32px auto;
    display: grid;
    gap: 18px;
}

.account-wide {
    max-width: 1200px;
}

.account-card {
    background: #23262d;
    border: 1px solid #3a3f48;
    border-radius: 14px;
    padding: 20px;
    color: #edf1f7;
}

.account-card h1,
.account-card h2 {
    margin: 0 0 10px;
    color: #fff;
}

.account-sub {
    margin: 0;
    color: #b8becb;
}

.account-form {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.account-form label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #b8becb;
}

.account-form input {
    border: 1px solid #4b515d;
    border-radius: 8px;
    background: #2d3139;
    color: #eef2f8;
    padding: 10px 12px;
}

.account-form ul.errorlist {
    margin: 0;
    padding-left: 20px;
    color: #ff8d8d;
}

.account-links {
    margin-top: 14px;
    color: #c6ccda;
}

.account-links a {
    color: var(--primary-color);
    text-decoration: none;
}

.account-header-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.account-header-actions {
    display: flex;
    gap: 8px;
}

.account-table-wrap {
    overflow-x: auto;
}

.account-table {
    width: 100%;
    border-collapse: collapse;
}

.account-table th,
.account-table td {
    border-bottom: 1px solid #3a3f48;
    padding: 10px;
    text-align: left;
}

.favorite-grid {
    display: grid;
    gap: 10px;
}

.favorite-item {
    background: #2b2f36;
    border: 1px solid #3b4049;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.favorite-meta {
    font-size: 12px;
    color: #9ea6b8;
    margin-bottom: 2px;
}

.favorite-title {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.favorite-price {
    color: var(--primary-color);
    font-weight: 700;
}

.empty-state {
    color: #b8becb;
    margin: 0;
}
