/* Customer account dashboard */
.account-sidebar__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.account-sidebar__avatar--placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #666;
    font-size: 1.2rem;
}
.account-sidebar__link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    color: #444;
    text-decoration: none;
    font-size: 0.9rem;
    border: none;
    background: none;
}
.account-sidebar__link:hover { background: #f8f9fa; color: #111; }
.account-sidebar__link.active {
    background: #212529;
    color: #fff;
    font-weight: 600;
}
.account-sidebar__link--btn { cursor: pointer; }
.account-stat-card {
    border: 0;
    border-radius: 10px;
    color: #fff;
}
.account-stat-card .h3 { font-weight: 700; }
.checkout-auth-card .nav-pills .nav-link {
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}
.checkout-auth-card .nav-pills .nav-link.active {
    background: #212529;
}
.checkout-page {
    padding-bottom: 1rem;
}
.checkout-summary-card {
    position: sticky;
    top: 1rem;
}
.checkout-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #fff;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}
.checkout-mobile-bar__total {
    min-width: 5rem;
}
@media (max-width: 991.98px) {
    .checkout-page {
        padding-bottom: 5.5rem;
    }
    .checkout-mobile-bar {
        display: flex;
    }
}
